mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
|
|
processor 6502
|
|
.org $07FF
|
|
.word $0801 ; two-byte start address
|
|
.org $0801 ; start of BASIC program
|
|
|
|
.word BASIC_END, 10 ; Next line and current line number
|
|
.byte $9e," 2064",0 ; SYS 2064
|
|
BASIC_END:
|
|
.word 0 ; End of program
|