17 lines
551 B
C
17 lines
551 B
C
#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
|
|
|