mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +00:00
11 lines
150 B
Plaintext
11 lines
150 B
Plaintext
|
|
processor 6502
|
|
seg.u ZEROPAGE ; uninitialized zero-page variables
|
|
org $0
|
|
|
|
seg CODE
|
|
org $803 ; starting address
|
|
|
|
Start
|
|
jmp Start ; endless loop
|