]> git.sur5r.net Git - cc65/blob - libsrc/c16/kclose.s
Merge remote-tracking branch 'upstream/master' into creativision
[cc65] / libsrc / c16 / 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