mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
21 lines
213 B
ArmAsm
21 lines
213 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 03.06.1999
|
||
|
;
|
||
|
; unsigned __fastcall__ cbm_iobase (void);
|
||
|
;
|
||
|
|
||
|
.include "cbm.inc"
|
||
|
|
||
|
.export _cbm_iobase
|
||
|
|
||
|
_cbm_iobase:
|
||
|
jsr IOBASE
|
||
|
txa
|
||
|
pha
|
||
|
tya
|
||
|
tax
|
||
|
pla
|
||
|
rts
|
||
|
|
||
|
|