passport/src/patchers/micrograms.a

30 lines
705 B
Plaintext
Raw Normal View History

;-------------------------------
; #MICROGRAMS
; Micrograms RWTS requires a non-standard
; third epilogue nibble ($BE)
;
; tested on
; Wild West Math Level 3
; Wild West Math Level 4
; Wild West Math Level 5
; Shapes and Patterns
;-------------------------------
!zone {
ldy #$09
jsr SearchTrack
!byte $AD,$EC,$C0
!byte $10,$FB
!byte $C9,$BE
!byte $D0,$E5
2019-06-17 15:45:57 +00:00
bcs .exit ; passport-test-suite/Shapes and Patterns.woz [C=0] matches
2019-04-16 05:39:12 +00:00
tay
txa
adc #8
tax
tya
ldy #$01
jsr modify ; change BNE to continue instead
!byte $00
.exit
}