mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 23:05:24 +00:00
17 lines
274 B
ArmAsm
17 lines
274 B
ArmAsm
|
;
|
||
|
; Jede, 10.11.2017
|
||
|
;
|
||
|
; unsigned char __fastcall__ _sysremove (const char* name);
|
||
|
;
|
||
|
|
||
|
.export __sysremove
|
||
|
|
||
|
|
||
|
.include "zeropage.inc"
|
||
|
.include "telestrat.inc"
|
||
|
|
||
|
__sysremove:
|
||
|
; Push name
|
||
|
BRK_TELEMON(XRM)
|
||
|
rts
|