Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,2 @@
ld a,(&0000) ;dereference the null pointer as a uint8
ld hl,(&0000) ;dereference the null pointer as a uint16

View file

@ -0,0 +1,9 @@
LD HL,myPointers
;there is no LD BC,(HL) so we have to do this:
LD c,(hl)
inc hl
LD b,(hl)
;and compare to null
LD a,b
or c ;compare BC to zero
JR z,isNull