diff options
author | YamaArashi <shadow962@live.com> | 2016-06-11 17:48:24 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-06-11 17:50:20 -0700 |
commit | 7e112672b436afee27f1a5a0d6e7a5964e7829b2 (patch) | |
tree | 9176ffc5b6384a48eb32ea8f33ac97d1d67f6865 /engine/joypad.asm | |
parent | f5983c0f813d3d908b6016db3ed866e4ca9437dc (diff) |
remove address comments
Diffstat (limited to 'engine/joypad.asm')
-rw-r--r-- | engine/joypad.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/joypad.asm b/engine/joypad.asm index 2b85cb61..4126568c 100644 --- a/engine/joypad.asm +++ b/engine/joypad.asm @@ -1,4 +1,4 @@ -ReadJoypad_:: ; c000 (3:4000) +ReadJoypad_:: ; Poll joypad input. ; Unlike the hardware register, button ; presses are indicated by a set bit. @@ -33,7 +33,7 @@ ReadJoypad_:: ; c000 (3:4000) ret -_Joypad:: ; c02d (3:402d) +_Joypad:: ; hJoyReleased: (hJoyLast ^ hJoyInput) & hJoyLast ; hJoyPressed: (hJoyLast ^ hJoyInput) & hJoyInput |