mirror of
https://github.com/cc65/cc65.git
synced 2024-11-18 15:05:14 +00:00
19 lines
265 B
ArmAsm
19 lines
265 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 21.12.99
|
||
|
|
||
|
; char ChangeDiskDevice (char newDriveNumber);
|
||
|
|
||
|
.export _ChangeDiskDevice
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_ChangeDiskDevice:
|
||
|
jsr ChangeDiskDevice
|
||
|
stx errno
|
||
|
txa
|
||
|
rts
|