From 0a7a2a7a8f95730811117bd2aa904f1843f65071 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Fri, 17 Apr 2020 22:07:14 -0400 Subject: Made both the assembly language monitor, and the emulator smaller, and faster. I am also starting to make SuBEditor's source code more readable. --- opcode.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'opcode.h') diff --git a/opcode.h b/opcode.h index c92ee67..71cae60 100644 --- a/opcode.h +++ b/opcode.h @@ -1,3 +1,4 @@ +#include #include #include #include @@ -195,14 +196,10 @@ #define C ((uint64_t)1 << 0) #define Z ((uint64_t)1 << 1) #define I ((uint64_t)1 << 2) -#define S ((uint64_t)1 << 3) #define V ((uint64_t)1 << 6) #define N ((uint64_t)1 << 7) -struct sux; - uint8_t *addr; /* Address Space. */ -uint8_t ibcount; /* Number of bytes taken up by instruction. */ struct sux { uint64_t ps; /* The processor status register. */ -- cgit v1.2.3-13-gbd6f