the default can replace exactly this module without interfering with other
stuff.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5785
b7a2c559-68d2-44c3-8de9-
860c34a00d81
exehdr.o \
filedes.o \
filename.o \
+ filetype.o \
filevars.o \
gotox.o \
gotoxy.o \
--- /dev/null
+;
+; Ullrich von Bassewitz, 2012-07-15
+;
+; Default file type used when creating new files
+;
+
+ .export __filetype
+
+
+.data
+
+__filetype:
+ .byte 's' ; Create sequential files by default
+
+
; Variables used for CBM file I/O
;
- .export __filetype
.export __curunit
.constructor initcurunit, 30
.importzp devnum
-.data
-
-__filetype:
- .byte 's' ; Create sequential files by default
-
-
.bss
__curunit: