]> git.sur5r.net Git - cc65/commitdiff
Use 's' as default file type instead of 'u'.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Jul 2012 18:24:01 +0000 (18:24 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Jul 2012 18:24:01 +0000 (18:24 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5756 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/cbm.h
libsrc/cbm/filevars.s

index dff9770a32b9ca0ff1e4eea3e390666d69acb116..3ca8715e47f4d1a63542ba01a3b398c524f9faae 100644 (file)
@@ -85,7 +85,7 @@
  * following variables to determine the file type and the disk unit to use.
  */
 extern unsigned char _curunit;  /* Defaults to current when program started */
-extern char _filetype;          /* Defaults to 'u' */
+extern char _filetype;          /* Defaults to 's' */
 
 
 
index 3b6bdb750a023dbb3901bca9f7a8d48dac89f648..a1d5bd4e2df8fc0a97627357a86b0a200f4922bb 100644 (file)
@@ -13,7 +13,7 @@
 .data
 
 __filetype:
-        .byte   'u'             ; Create user files by default
+        .byte   's'             ; Create sequential files by default
 
 
 .bss