mirror of
https://github.com/zellyn/a2audit.git
synced 2024-11-22 13:33:35 +00:00
26 lines
350 B
NASM
26 lines
350 B
NASM
;;; Apple II audit routine macros.
|
|
;;; Copyright © 2016 Zellyn Hunter <zellyn@gmail.com>
|
|
|
|
!macro print {
|
|
lda #<LASTSTRING
|
|
sta getch2+1
|
|
lda #>LASTSTRING
|
|
sta getch2+2
|
|
jsr print2
|
|
!set TEMP = *
|
|
* = LASTSTRING
|
|
}
|
|
!macro printed {
|
|
!byte 0
|
|
!set LASTSTRING=*
|
|
* = TEMP
|
|
}
|
|
|
|
!macro prerr NUM {
|
|
+print
|
|
}
|
|
!macro prerred {
|
|
!byte $8D
|
|
+printed
|
|
}
|