Fixed constant limit to be in the correct base number system.

This commit is contained in:
mjbudd77 2021-04-27 20:22:39 -04:00
parent 0006cb265d
commit 9fc0237a01
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ int Assemble(unsigned char *output, int addr, char *str) {
output[0] = output[1] = output[2] = 0;
char astr[128],ins[4];
int len = strlen(str);
if ((!len) || (len > 0x127)) return 1;
if ((!len) || (len > 127)) return 1;
strcpy(astr,str);
str_ucase(astr);