aboutsummaryrefslogtreecommitdiffstats
path: root/home/joypad.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 12:28:31 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-06 12:28:31 -0400
commit8a79315635ee9ebb6eed5c9648fe89746085d0b1 (patch)
treee4db65c6ced277be38f2cb0bfc85cdc39a90208e /home/joypad.asm
parentAutomatically list all TM##_MOVE and HM##_MOVE values (diff)
downloadpokeyellow-8a79315635ee9ebb6eed5c9648fe89746085d0b1.tar.gz
pokeyellow-8a79315635ee9ebb6eed5c9648fe89746085d0b1.tar.xz
pokeyellow-8a79315635ee9ebb6eed5c9648fe89746085d0b1.zip
Capitalize rgbds control structures (EQU/EQUS, IF/ELIF/ELSE/ENDC, REPT/ENDR, MACRO/ENDM, etc)
Diffstat (limited to 'home/joypad.asm')
-rw-r--r--home/joypad.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/joypad.asm b/home/joypad.asm
index 2002bb29..9948b6e7 100644
--- a/home/joypad.asm
+++ b/home/joypad.asm
@@ -7,9 +7,9 @@ ReadJoypad::
ld c, 0
ld [rJOYP], a
- rept 6
+ REPT 6
ld a, [rJOYP]
- endr
+ ENDR
cpl
and %1111
swap a
@@ -17,9 +17,9 @@ ReadJoypad::
ld a, 1 << 4 ; select button keys
ld [rJOYP], a
- rept 10
+ REPT 10
ld a, [rJOYP]
- endr
+ ENDR
cpl
and %1111
or b