Apple-6502-Scaffold/src/main.asm

34 lines
920 B
NASM
Raw Normal View History

2019-04-12 07:50:47 +00:00
; ****************************************
; main.asm
; Copyright (C) 20XX [your_name_here]
; ****************************************
2019-04-12 06:34:51 +00:00
processor 6502
incdir "include"
2019-04-12 07:50:47 +00:00
; ****************************************
; main
; ****************************************
seg
2019-04-12 06:34:51 +00:00
org $c00
main subroutine
2019-04-12 07:50:47 +00:00
jsr HOME ; Clear the screen
2019-04-12 06:34:51 +00:00
jsr print
byte "YOUR PROGRAM WORKED!",0
jsr print
byte '","CALL ",[main]d,'"," TO RUN AGAIN.",0
2019-04-12 07:50:47 +00:00
jmp DOSWRM ; Return to Applesoft
2019-04-12 06:34:51 +00:00
; ****************************************
; includes
; ****************************************
include "stdio"
include "print"