mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2024-12-22 05:29:54 +00:00
26 lines
753 B
ArmAsm
26 lines
753 B
ArmAsm
.setcpu "6502"
|
|
|
|
.include "apple2.inc"
|
|
.include "apple2.mac"
|
|
|
|
.include "../inc/apple2.inc"
|
|
.include "../inc/macros.inc"
|
|
.include "../inc/prodos.inc"
|
|
|
|
;;; ************************************************************
|
|
.include "../inc/driver_preamble.inc"
|
|
;;; ************************************************************
|
|
|
|
.proc maybe_install_driver
|
|
lda #$f0 ; text: white on black
|
|
sta TBCOLOR
|
|
lda #$00 ; border: black
|
|
sta CLOCKCTL
|
|
|
|
rts
|
|
.endproc
|
|
|
|
;;; ************************************************************
|
|
.include "../inc/driver_postamble.inc"
|
|
;;; ************************************************************
|