mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2024-11-03 05:04:50 +00:00
21 lines
567 B
ArmAsm
21 lines
567 B
ArmAsm
|
|
.setcpu "6502"
|
|
.include "apple2.inc"
|
|
|
|
.org $2000 ; System files start at $2000
|
|
|
|
;; ProDOS System Global Page
|
|
PRODOS := $BF00 ; MLI entry point
|
|
|
|
|
|
.proc install
|
|
rts
|
|
|
|
parmtable:
|
|
.byte 4 ; Number of parameters is 4
|
|
.byte 0 ; 0 is the only quit type
|
|
.word 0000 ; Pointer reserved for future use
|
|
.byte 0 ; Byte reserved for future use
|
|
.word 0000 ; Pointer reserved for future use
|
|
.endproc
|