Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,7 @@
UserRam equ &C000
ld a,&50 ;load hexadecimal 50 into A
ld (UserRam),a ;initialize UserRam with a value of &50
ld a,&40 ;load hexadecimal 40 into A
ld (UserRam),a ;assign UserRam a new value of &40

View file

@ -0,0 +1,2 @@
byte &EF,&BE
word &BEEF

View file

@ -0,0 +1,12 @@
org &8000
ld hl,TestData ;H = &90, L = &00
ld hl,(TestData) ;H = &BE, L = &EF
;In a real program you would need something here to stop the program counter from executing the data below as instructions.
;For simplicity this was left out.
org &9000
TestData:
byte &EF,&BE