]> git.sur5r.net Git - cc65/blob - libsrc/geos-cbm/file/sysremove.s
Renamed the old geos target to geos-cbm.
[cc65] / libsrc / geos-cbm / file / sysremove.s
1
2 ;
3 ; Maciej 'YTM/Elysium' Witkowiak
4 ;
5 ; 19.07.2005
6
7 ; unsigned char __fastcall__ _sysremove (const char* name);
8
9             .export  __sysremove
10
11             .include "../inc/jumptab.inc"
12             .include "../inc/geossym.inc"
13
14 __sysremove:
15         sta r0L
16         stx r0H
17         jsr DeleteFile
18         txa
19         ldx #0
20         rts