From d31aed21b27fbda68abe088d657ba18455607cc4 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Mon, 17 Aug 2020 20:37:44 -0400 Subject: - Fixed some bugs in the emulator's assembler. - Simplified the effective address functions. - Made SuBEditor a bit faster. - JSR, and RTS now support using the RS prefix, which is used to specify the return address size, with an RS prefix of 0 being a return address size of 64 bits, rather than 8 bits. --- opcode.h | 1 + 1 file changed, 1 insertion(+) (limited to 'opcode.h') diff --git a/opcode.h b/opcode.h index fc2c8e6..cd883d4 100644 --- a/opcode.h +++ b/opcode.h @@ -18,6 +18,7 @@ #define N (1 << 7) /* Negative flag. */ extern uint8_t get_addrsize(uint8_t prefix, uint8_t addrmode); +extern char *showbits(uint64_t value, uint8_t bitnum, uint8_t dbg); /* reg_expr, and val_expr are the arithmetic expressions * that will be used for either the value, or register, such as '+', or '-'. -- cgit v1.2.3-13-gbd6f