Use 's' as default file type instead of 'u'.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5756 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -85,7 +85,7 @@
|
|||||||
* following variables to determine the file type and the disk unit to use.
|
* following variables to determine the file type and the disk unit to use.
|
||||||
*/
|
*/
|
||||||
extern unsigned char _curunit; /* Defaults to current when program started */
|
extern unsigned char _curunit; /* Defaults to current when program started */
|
||||||
extern char _filetype; /* Defaults to 'u' */
|
extern char _filetype; /* Defaults to 's' */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
.data
|
.data
|
||||||
|
|
||||||
__filetype:
|
__filetype:
|
||||||
.byte 'u' ; Create user files by default
|
.byte 's' ; Create sequential files by default
|
||||||
|
|
||||||
|
|
||||||
.bss
|
.bss
|
||||||
|
|||||||
Reference in New Issue
Block a user