fix dragondos Disk BASIC tokens

This commit is contained in:
tim lindner 2021-01-04 11:09:17 -08:00
parent e900729c13
commit 7cf94e4b04

View File

@ -602,25 +602,32 @@ static const char *const dragonbas_statements[] =
"=", /* 0xcb */ "=", /* 0xcb */
"<", /* 0xcc */ "<", /* 0xcc */
"USING", /* 0xcd */ "USING", /* 0xcd */
"DIR", /* 0xce */ "AUTO", /* 0xce */
"DRIVE", /* 0xcf */ "BACKUP", /* 0xcf */
"FIELD", /* 0xd0 */ "BEEP", /* 0xd0 */
"FILES", /* 0xd1 */ "BOOT", /* 0xd1 */
"KILL", /* 0xd2 */ "CHAIN", /* 0xd2 */
"LOAD", /* 0xd3 */ "COPY", /* 0xd3 */
"LSET", /* 0xd4 */ "CREATE", /* 0xd4 */
"MERGE", /* 0xd5 */ "DIR", /* 0xd5 */
"RENAME", /* 0xd6 */ "DRIVE", /* 0xd6 */
"RSET", /* 0xd7 */ "DSKINIT", /* 0xd7 */
"SAVE", /* 0xd8 */ "FREAD", /* 0xd8 */
"WRITE", /* 0xd9 */ "FWRITE", /* 0xd9 */
"VERIFY", /* 0xda */ "ERROR", /* 0xda */
"UNLOAD", /* 0xdb */ "KILL", /* 0xdb */
"DSKINI", /* 0xdc */ "LOAD", /* 0xdc */
"BACKUP", /* 0xdd */ "MERGE", /* 0xdd */
"COPY", /* 0xde */ "PROTECT", /* 0xde */
"DSKI$", /* 0xdf */ "WAIT", /* 0xdf */
"DSKO$" /* 0xe0 */ "RENAME", /* 0xe0 */
"SAVE", /* 0xe1 */
"SREAD", /* 0xe2 */
"SWRITE", /* 0xe3 */
"VERIFY", /* 0xe4 */
"FROM", /* 0xe5 */
"FLREAD", /* 0xe6 */
"SWAP" /* 0xe7 */
}; };
static const char *const dragonbas_functions[] = static const char *const dragonbas_functions[] =
@ -659,11 +666,13 @@ static const char *const dragonbas_functions[] =
"PPOINT", /* 0xff9f */ "PPOINT", /* 0xff9f */
"STRING$", /* 0xffa0 */ "STRING$", /* 0xffa0 */
"USR", /* 0xffa1 */ "USR", /* 0xffa1 */
"CVN", /* 0xffa2 */ "LOF", /* 0xffa2 */
"FREE", /* 0xffa3 */ "FREE", /* 0xffa3 */
"LOC", /* 0xffa4 */ "ERL", /* 0xffa4 */
"LOF", /* 0xffa5 */ "ERR", /* 0xffa5 */
"MKN$" /* 0xffa6 */ "HIMEM", /* 0xffa6 */
"LOC", /* 0xffa7 */
"FRE$" /* 0xffa8 */
}; };
static const char *const vzbas[] = static const char *const vzbas[] =