1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-22 20:29:34 +00:00
C02/test/testhdr.a02
2018-01-28 14:47:06 -05:00

15 lines
464 B
Plaintext

;6502 Assembly Language File for DASM Macro Assembler
ORG $0200 ;Set Origin
start: JMP main ;Jump to Beginning of Program
;Dummy Functions
testfn: RTS ;Generic Test Function
getkey: RTS ;Get Character from Keyboard
prchr: RTS ;Print Character to Screen
putstr: RTS ;Print String to Screen
strlen: RTS ;Return Length of String
exit: BRK ;Return to Monitor