passport/src/id/phoenix.a

19 lines
483 B
Plaintext
Raw Normal View History

2019-04-08 00:02:19 +00:00
;-------------------------------
; IDPhoenix
; identify Phoenix bootloader
;
; in: track buffer contains T00,S00
; out: C clear if Phoenix bootloader was found
; C set if not found
; all other flags clobbered
; all registers clobbered
;-------------------------------
!zone {
IDPhoenix
lda #$00
ldx #$B8
2021-06-21 15:57:02 +00:00
jsr compare3
2019-04-08 00:02:19 +00:00
!byte $AC,$B7,$F6
2019-05-07 01:24:29 +00:00
rts ; passport-test-suite/Zoom Grafix 26-JAN-82.woz [C=0] matches
2019-04-08 00:02:19 +00:00
}