From e33acfb427845b8d12735fd0f3e87d6785aacdca Mon Sep 17 00:00:00 2001 From: Dozingfiretruck <1473454180@qq.com> Date: Sat, 27 Jul 2024 01:46:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=BC=96=E8=AF=91=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/nes_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nes_cpu.c b/src/nes_cpu.c index 92ba477..c97f5ab 100644 --- a/src/nes_cpu.c +++ b/src/nes_cpu.c @@ -27,7 +27,7 @@ typedef struct { void (*instruction)(nes_t* nes); //instructions - const uint16_t (*addressing_mode)(nes_t* nes); //addressing_mode + uint16_t (*addressing_mode)(nes_t* nes); //addressing_mode const uint8_t ticks; } nes_opcode_t;