Browse code

Fixed issue with oprunes

neauoire authored on 12/04/2022 00:16:05
Showing 1 changed files
... ...
@@ -55,7 +55,7 @@ static char ops[][4] = {
55 55
 	"ADD", "SUB", "MUL", "DIV", "AND", "ORA", "EOR", "SFT"
56 56
 };
57 57
 static char symchr[] = {'?', '!', '>', '<', '+', '-', '*', '/'};
58
-static Uint8 symval[] = {0x08, 0x09, 0x0a, 0x1b, 0x18, 0x19, 0x1a, 0x1b};
58
+static Uint8 symval[] = {0x08, 0x09, 0x0a, 0x0b, 0x18, 0x19, 0x1a, 0x1b};
59 59
 
60 60
 static int   scmp(char *a, char *b, int len) { int i = 0; while(a[i] == b[i]) if(!a[i] || ++i >= len) return 1; return 0; } /* string compare */
61 61
 static int   sihx(char *s) { int i = 0; char c; while((c = s[i++])) if(!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f')) return 0; return i > 1; } /* string is hexadecimal */