aboutsummaryrefslogtreecommitdiff
path: root/src/parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/parser.c b/src/parser.c
index 2e8894b..2f16323 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -383,6 +383,7 @@ static u32 parse_line(struct context *ctx, char *str, u32 size)
struct token tok = token_resolve(str + str_ind, size - str_ind);
if (tok.type == NEWLINE) {
ctx->line++;
+ ctx->column = 0;
break;
}
@@ -602,6 +603,14 @@ static u32 parse_line(struct context *ctx, char *str, u32 size)
case BIT:
warnings_add(ctx, "Random non-instruction found");
break;
+ case INSTR_START:
+ case INSTR_END:
+ case NUM_START:
+ case NUM_END:
+ case REGS_START:
+ case REGS_END:
+ warnings_add(ctx, "Got enum boundary");
+ break;
default:
warnings_add(ctx, "Super-unknown instruction");
break;