mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2024-10-13 06:23:41 +00:00
30 lines
624 B
ArmAsm
30 lines
624 B
ArmAsm
.setcpu "6502"
|
|
.include "apple2.inc"
|
|
|
|
.include "../inc/apple2.inc"
|
|
.include "../inc/prodos.inc"
|
|
|
|
.org SYS_ADDR
|
|
|
|
cld
|
|
|
|
bit ROMIN2
|
|
sta CLR80VID
|
|
sta CLRALTCHAR
|
|
sta CLR80COL
|
|
jsr SETVID
|
|
jsr SETKBD
|
|
jsr SETNORM
|
|
jsr INIT
|
|
jsr HOME
|
|
|
|
lda #$f2 ; text: white on dark blue
|
|
sta TBCOLOR
|
|
lda #$02 ; text: dark blue
|
|
sta CLOCKCTL
|
|
|
|
MLI_CALL QUIT, quit_params
|
|
brk
|
|
|
|
DEFINE_QUIT_PARAMS quit_params
|