First push after merge, split and enhance both zOS and zputa

This commit is contained in:
Philip Smart
2020-04-25 22:48:39 +01:00
commit 25466f1db8
5072 changed files with 2191180 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#ifndef __TEXTUAL_H_
#define __TEXTUAL_H_
#define CONST_COMMON_STRINGS "TBASIC 1.7\ncode: \nvars: \nnext: \n"\
"BREAK\nEnd of code\nSaved\nLoaded\nbytes\nLoad failed\n"\
"Autorun in 1 sec\nCanceled!\nLow VARS mem\nLow PROG mem\n"
#define CONST_PARSING_ERRORS "\nCmd or Var expectedd\nSymbol '=' expected\nName expected\n"\
"Symbol ';' expected\nExtra chars at end\nUnexpected error\nNumber out of range\n"\
"Number expected\nUnexpected symbol\nUnexpected line end\n"
#define ID_COMMON_STRINGS 0
#define ID_PARSING_ERRORS 1
#endif