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 @@
MyByte:
DC.B 0
EVEN ;you need this to prevent alignment problems if you define an odd number of bytes.
MyWord:
DC.W 0 ;this takes up 2 bytes even though only one 0 was written
MyLong:
DC.L 0 ;this takes up 4 bytes even though only one 0 was written

View file

@ -0,0 +1,4 @@
Cursor_X equ $100000 ;byte - only comments can tell you the intended variable size.
Cursor_Y equ $100001 ;byte
tempWord equ $100002 ;word - also occupies $100003
tempLong equ $100004 ;long - also occupies $100005,6,7