(uxnasm) Removed macro length

This commit is contained in:
Devine Lu Linvega 2024-03-27 10:20:33 -07:00
parent 7760593a88
commit 278a4391c9
1 changed files with 0 additions and 2 deletions

View File

@ -20,7 +20,6 @@ typedef unsigned short Uint16;
typedef struct {
char *name, content[0x80];
Uint8 len;
} Macro;
typedef struct {
@ -151,7 +150,6 @@ makemacro(char *name, FILE *f)
if(word[0] == '{') continue;
if(word[0] == '}') break;
if(word[0] == '%') return error_asm("Macro error");
if(m->len >= 0x40) return error_asm("Macro size exceeded");
if(word[0] == '(') {
if(!walkcomment(word, f)) return error_asm("Comment error");
continue;