Identify more bit flags (#1153)

This commit is contained in:
Sylvie
2024-11-29 19:29:30 -05:00
committed by GitHub
parent 8894e29da2
commit 644bd42fb0
78 changed files with 539 additions and 472 deletions

View File

@@ -121,17 +121,17 @@ RestartClock:
push af
call .PrintTime
pop af
bit 0, a
bit A_BUTTON_F, a
jr nz, .press_A
bit 1, a
bit B_BUTTON_F, a
jr nz, .press_B
bit 6, a
bit D_UP_F, a
jr nz, .pressed_up
bit 7, a
bit D_DOWN_F, a
jr nz, .pressed_down
bit 5, a
bit D_LEFT_F, a
jr nz, .pressed_left
bit 4, a
bit D_RIGHT_F, a
jr nz, .pressed_right
jr .joy_loop