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 #$f6 ; border: white on medium blue
|
|
|
|
sta TBCOLOR
|
|
|
|
lda #$06 ; border: medium 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"
|
|
|
|
;;; ************************************************************
|