From 114fb829905cce1e1f63ff1fee6fdbe11bb72715 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 2 Nov 2023 20:41:36 +0000 Subject: Removed instruction OP_JUMP_REGISTER Not necessary when you can just push the relevant word onto the stack then just do OP_JUMP_STACK. --- asm/lexer.c | 2 +- asm/parser.c | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) (limited to 'asm') diff --git a/asm/lexer.c b/asm/lexer.c index 01c2e5d..836dd08 100644 --- a/asm/lexer.c +++ b/asm/lexer.c @@ -137,7 +137,7 @@ bool is_valid_hex_char(char c) token_t tokenise_symbol(buffer_t *buffer, size_t *column) { - static_assert(NUMBER_OF_OPCODES == 96, "tokenise_buffer: Out of date!"); + static_assert(NUMBER_OF_OPCODES == 95, "tokenise_buffer: Out of date!"); size_t sym_size = 0; for (; sym_size < space_left(buffer) && diff --git a/asm/parser.c b/asm/parser.c index f9eb975..da0c93c 100644 --- a/asm/parser.c +++ b/asm/parser.c @@ -413,16 +413,6 @@ perr_t parse_next(token_stream_t *stream, presult_t *ret) return PERR_EXPECTED_OPERAND; return parse_word_label_or_relative(stream, ret); } - else if (token.str_size == 9 && strncmp(token.str, ".REGISTER", 9) == 0) - { - *ret = (presult_t){.instruction = INST_JUMP_REGISTER(0), - .type = PRES_COMPLETE_RESULT}; - ++stream->used; - if (stream->used >= stream->available) - return PERR_EXPECTED_OPERAND; - return parse_word(TOKEN_STREAM_AT(stream->data, stream->used), - &ret->instruction.operand.as_word); - } else if (token.str_size == 6 && strncmp(token.str, ".STACK", 6) == 0) *ret = (presult_t){.instruction = INST_JUMP_STACK, .type = PRES_COMPLETE_RESULT}; -- cgit v1.2.3-13-gbd6f