2022-01-07 00:58:03 +00:00
|
|
|
.setcpu "6502"
|
2022-01-07 01:12:30 +00:00
|
|
|
|
2022-01-07 00:58:03 +00:00
|
|
|
.include "apple2.inc"
|
2022-01-07 01:12:30 +00:00
|
|
|
.include "apple2.mac"
|
2022-01-07 00:58:03 +00:00
|
|
|
|
|
|
|
.include "../inc/apple2.inc"
|
2022-01-07 01:12:30 +00:00
|
|
|
.include "../inc/macros.inc"
|
2022-01-07 00:58:03 +00:00
|
|
|
.include "../inc/prodos.inc"
|
|
|
|
|
2022-01-07 01:12:30 +00:00
|
|
|
;;; ************************************************************
|
|
|
|
.include "../inc/driver_preamble.inc"
|
|
|
|
;;; ************************************************************
|
2022-01-07 00:58:03 +00:00
|
|
|
|
2022-01-07 01:12:30 +00:00
|
|
|
.proc maybe_install_driver
|
2022-01-07 00:58:03 +00:00
|
|
|
lda #$f2 ; text: white on dark blue
|
|
|
|
sta TBCOLOR
|
|
|
|
lda #$02 ; text: dark blue
|
|
|
|
sta CLOCKCTL
|
|
|
|
|
2022-01-07 01:12:30 +00:00
|
|
|
rts
|
|
|
|
.endproc
|
2022-01-07 00:58:03 +00:00
|
|
|
|
2022-01-07 01:12:30 +00:00
|
|
|
;;; ************************************************************
|
|
|
|
.include "../inc/driver_postamble.inc"
|
|
|
|
;;; ************************************************************
|