]> git.sur5r.net Git - cc65/blob - kclose.s
ef7004732a9257013b2755983456ebd458026482
[cc65] / kclose.s
1 ;
2 ; Ullrich von Bassewitz, 2003-12-21
3 ;
4 ; CLOSE replacement function
5 ;
6
7         .export         CLOSE
8
9 .proc   CLOSE
10         clc                             ; Force C64 compatible behaviour
11         jmp     $FFC3                   ; Call the ROM routine
12 .endproc
13
14