4cade/src/prelaunch/vindicator.a

31 lines
661 B
Plaintext
Raw Normal View History

2019-12-27 03:27:53 +00:00
;license:MIT
;(c) 2019 by Frank M.
!cpu 6502
!to "build/PRELAUNCH/VINDICATOR",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
lda #$60
sta $1867
jsr $181C ; decompress
+NEW_RESET_VECTOR $BFF0
lda #$F0
sta $4001
lda #$BF
sta $400F ; reset vector fix
lda #$60 ; annunciator fix - kills Gizmo/joyport support
sta $5B77 ; but fixes ][+ 80-col softswitch
sta $5B43 ; and //c+ coloring
2019-12-27 03:27:53 +00:00
+DISABLE_ACCEL
jmp $4000
!if * > $1C0 {
!error "code is too large, ends at ", *
}