summaryrefslogtreecommitdiff
path: root/cpu_opcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpu_opcodes.c')
-rw-r--r--cpu_opcodes.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpu_opcodes.c b/cpu_opcodes.c
index 5fd5634..b879015 100644
--- a/cpu_opcodes.c
+++ b/cpu_opcodes.c
@@ -583,7 +583,6 @@ static void opcode_sei(struct nes_state * restrict state) {
// CMP
-
static inline void cmp(struct cpu_state * restrict cpu, uint8_t value) {
uint8_t result = cpu->a - value;
cpu->c = (cpu->a >= value);