mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 02:05:13 +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
|