aboutsummaryrefslogtreecommitdiff
path: root/qtmips_machine/core.h
diff options
context:
space:
mode:
Diffstat (limited to 'qtmips_machine/core.h')
-rw-r--r--qtmips_machine/core.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/qtmips_machine/core.h b/qtmips_machine/core.h
index b09e297..7d38d79 100644
--- a/qtmips_machine/core.h
+++ b/qtmips_machine/core.h
@@ -70,12 +70,13 @@ protected:
class CoreSingle : public Core {
public:
- CoreSingle(Registers *regs, MemoryAccess *mem);
+ CoreSingle(Registers *regs, MemoryAccess *mem, bool jmp_delay_slot);
+ ~CoreSingle();
void step();
private:
- struct Core::dtDecode jmp_delay_decode;
+ struct Core::dtDecode *jmp_delay_decode;
};
class CorePipelined : public Core {