summaryrefslogtreecommitdiff
path: root/home/lcd.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 21:00:07 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 21:00:07 -0500
commit09e92c554c7563b52a9484b26d96d903c7635b0d (patch)
tree6a992ea21650f5841bb8b60f7937986a4f8da38b /home/lcd.asm
parent865d37e02ad6af386e7f596659ebec12266be3ce (diff)
Use ~X instead of $ff ^ X
Diffstat (limited to 'home/lcd.asm')
-rw-r--r--home/lcd.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/home/lcd.asm b/home/lcd.asm
index 72fc70ed..5c496824 100644
--- a/home/lcd.asm
+++ b/home/lcd.asm
@@ -12,7 +12,7 @@ DisableLCD::
jr nz, .wait
ldh a, [rLCDC]
- and $ff ^ rLCDC_ENABLE_MASK
+ and ~rLCDC_ENABLE_MASK
ldh [rLCDC], a
ld a, b
ldh [rIE], a