mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-15 17:08:51 +00:00
23 lines
666 B
Plaintext
23 lines
666 B
Plaintext
;6502 Assembly Language File for DASM Macro Assembler
|
|
|
|
TRUE EQU $FF ;Bitwise True
|
|
FALSE EQU $FF ;Bitwise False
|
|
|
|
ORG $0200 ;Set Origin
|
|
|
|
START: JMP main ;Jump to Beginning of Program
|
|
|
|
;Dummy Functions
|
|
GETC: RTS ;Get Character from Keyboard
|
|
PUTC: RTS ;Put Character to Screen
|
|
PUTS: RTS ;Print String to Screen
|
|
STRLEN: RTS ;Return Length of String
|
|
EXIT: BRK ;Return to Monitor
|
|
|
|
ANYKEY DC "Press any key to continue...",0
|
|
|
|
ONES DC "ZERO ",0,"ONE ",0,"TWO ",0,"THREE",0,"FOUR ",0
|
|
"FIVE ",0,"SIX ",0,"SEVEN",0,"EIGHT",0,"NINE ",0
|
|
|
|
|