mirror of
https://github.com/zellyn/a2audit.git
synced 2024-11-22 13:33:35 +00:00
151 lines
2.2 KiB
NASM
151 lines
2.2 KiB
NASM
;;; Apple II audit routines
|
|
;;; Copyright © 2016 Zellyn Hunter <zellyn@gmail.com>
|
|
|
|
!convtab <apple ii/convtab.bin>
|
|
!to "audit.o", plain
|
|
* = $6000
|
|
|
|
CSW = $36
|
|
KSW = $38
|
|
HOME = $FC58
|
|
COUT = $FDED
|
|
COUT1 = $FDF0
|
|
KEYIN = $FD1B
|
|
CROUT = $FD8E
|
|
PRBYTE = $FDDA
|
|
PRNTYX = $F940
|
|
|
|
STRINGS = $7000
|
|
!set LASTSTRING = $7000
|
|
|
|
;; Printing and error macros.
|
|
!src "macros.asm"
|
|
|
|
main:
|
|
jsr standard_fixup
|
|
|
|
jsr HOME
|
|
+print
|
|
!text "APPLE II AUDIT",$8D,$8D
|
|
+printed
|
|
|
|
;; Detection and reporting of model and memory.
|
|
!src "detect.asm"
|
|
|
|
;; Language card tests.
|
|
jsr LANGCARDTESTS
|
|
|
|
;; Auxiliary memory card tests.
|
|
jsr AUXMEMTESTS
|
|
|
|
;; ROM SHA-1 checks.
|
|
;; jsr SHASUMTESTS - do this later, because it's SLOW!
|
|
|
|
end: jmp *
|
|
|
|
!src "langcard.asm"
|
|
!src "auxmem.asm"
|
|
!src "shasumtests.asm"
|
|
|
|
print
|
|
lda $C081
|
|
lda $C081
|
|
pla
|
|
sta getch+1
|
|
pla
|
|
sta getch+2
|
|
- inc getch+1
|
|
bne getch
|
|
inc getch+2
|
|
getch lda $FEED ; FEED gets modified
|
|
beq +
|
|
jsr COUT
|
|
jmp -
|
|
+ rts
|
|
|
|
;;; Print a string of bytes, as hex.
|
|
;;; Address in SRC, count in A.
|
|
;;; Burns A,Y.
|
|
prbytes:
|
|
ldy #0
|
|
- pha
|
|
lda (SRC),y
|
|
jsr PRBYTE
|
|
iny
|
|
pla
|
|
adc #$ff
|
|
bne -
|
|
rts
|
|
|
|
|
|
errora
|
|
pha
|
|
lda $C082
|
|
lda #'A'
|
|
jsr COUT
|
|
lda #':'
|
|
jsr COUT
|
|
pla
|
|
jsr PRBYTE
|
|
jsr CROUT
|
|
error
|
|
lda $C082
|
|
pla
|
|
sta getche+1
|
|
pla
|
|
sta getche+2
|
|
- inc getche+1
|
|
bne getche
|
|
inc getche+2
|
|
getche lda $FEED ; FEED gets modified
|
|
beq +
|
|
jsr COUT
|
|
jmp -
|
|
+
|
|
+print
|
|
!text "ZELLYN.COM/A2AUDIT/V0#E",0
|
|
+printed
|
|
jsr PRNTYX
|
|
lda #$8D
|
|
jsr COUT
|
|
rts
|
|
!src "technote2.asm"
|
|
!src "../shasum/shasum.asm"
|
|
|
|
; !if * != STRINGS {
|
|
; !error "Expected STRINGS to be ", *
|
|
; }
|
|
|
|
!if * > STRINGS {
|
|
!error "End of compilation passed STRINGS:", *
|
|
}
|
|
|
|
;;; If we loaded via standard delivery, turn the motor off and fix up
|
|
;;; CSW and KSW (in case the user typed PR#6 or IN#6 to boot).
|
|
standard_fixup:
|
|
;; TODO(zellyn): actually check for standard delivery.
|
|
;; Turn drive motor off - do this regardless, since it doesn't hurt.
|
|
ldx $2B
|
|
lda $C088,X
|
|
|
|
;; If we typed PR#6 or IN#6 or something similar, the low byte
|
|
;; of CSW or KSW will be 0.
|
|
|
|
;; Fixup CSW
|
|
lda CSW
|
|
bne +
|
|
;; Point COUT at COUT1
|
|
lda #<COUT1
|
|
sta CSW
|
|
lda #>COUT1
|
|
sta CSW+1
|
|
|
|
;; Fixup KSW
|
|
+ lda KSW
|
|
bne +
|
|
lda #<KEYIN
|
|
sta KSW
|
|
lda #>KEYIN
|
|
sta KSW+1
|
|
+ rts
|