Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
ld a,(HL) ;switch (HL)
|
||||
cp 1 ;case (1)
|
||||
jr nz,+ ;branch to next colon (note: not all assemblers support this syntax)
|
||||
call HL_EQUALS_1
|
||||
:
|
||||
cp 2 ;case (2)
|
||||
jr nz,+ ;branch to next colon
|
||||
call HL_EQUALS_2
|
||||
:
|
||||
cp 50
|
||||
jr nz,+
|
||||
call HL_EQUALS_50
|
||||
:
|
||||
;rest of program
|
||||
Loading…
Add table
Add a link
Reference in a new issue