mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
17 lines
197 B
ArmAsm
17 lines
197 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 03.06.1999
|
||
|
;
|
||
|
; unsigned char __fastcall__ cbm_basin (void);
|
||
|
;
|
||
|
|
||
|
.include "cbm.inc"
|
||
|
|
||
|
.export _cbm_basin
|
||
|
|
||
|
_cbm_basin:
|
||
|
jsr BASIN
|
||
|
ldx #0
|
||
|
rts
|
||
|
|
||
|
|