mirror of
https://github.com/a2-4am/passport.git
synced 2024-12-27 23:31:07 +00:00
support Fax (#106)
This commit is contained in:
parent
be3787a015
commit
5000366bc6
@ -193,10 +193,25 @@ Do555
|
|||||||
;so we can count calls to whole-track seek
|
;so we can count calls to whole-track seek
|
||||||
; static boot tracer!
|
; static boot tracer!
|
||||||
|
|
||||||
|
.skip2jsr
|
||||||
ldy $801,x
|
ldy $801,x
|
||||||
lda $800,y
|
lda $800,y
|
||||||
cmp #$A9 ; LDA
|
cmp #$A9 ; LDA
|
||||||
beq .nohalf
|
bne .maybehalf
|
||||||
|
lda $806,x
|
||||||
|
cmp #$20 ; JSR $xxxx
|
||||||
|
bne .nohalf
|
||||||
|
lda $808,x
|
||||||
|
eor .patch+1
|
||||||
|
bne .nohalf
|
||||||
|
txa
|
||||||
|
adc #5 ; try the next JSR instead
|
||||||
|
tax
|
||||||
|
inc .curtrk+1
|
||||||
|
inc .curtrk+1
|
||||||
|
bne .skip2jsr ; always taken
|
||||||
|
|
||||||
|
.maybehalf
|
||||||
lda $801,y
|
lda $801,y
|
||||||
tay
|
tay
|
||||||
lda $800,y
|
lda $800,y
|
||||||
|
@ -365,7 +365,7 @@ StringTableHigh ; must be kept in sync with constants in enid.a
|
|||||||
.passport
|
.passport
|
||||||
!text "Passport ",$00
|
!text "Passport ",$00
|
||||||
.header
|
.header
|
||||||
!text "@",s_passport,"by 4am@",s_space7,"@",s_space7," 2021-10-07",$00
|
!text "@",s_passport,"by 4am@",s_space7,"@",s_space7," 2021-11-11",$00
|
||||||
.bar9
|
.bar9
|
||||||
!text "_________",$00
|
!text "_________",$00
|
||||||
.bar18
|
.bar18
|
||||||
|
Loading…
Reference in New Issue
Block a user