From e9ffa56110da05a6938ad690872cdac6d48fd586 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Tue, 5 Feb 2019 12:46:08 +0100 Subject: Reorganize PC handling and implement full REGIMM decode. Signed-off-by: Pavel Pisa --- qtmips_machine/instruction.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qtmips_machine/instruction.h') diff --git a/qtmips_machine/instruction.h b/qtmips_machine/instruction.h index 8396bc7..a8779f5 100644 --- a/qtmips_machine/instruction.h +++ b/qtmips_machine/instruction.h @@ -63,6 +63,10 @@ enum InstructionFlags { IMF_READ_HILO = 1L<<15, IMF_WRITE_HILO = 1L<<16, IMF_PC8_TO_RT = 1L<<17, + IMF_BRANCH = 1L<<18, + IMF_JUMP = 1L<<19, + IMF_BJ_NOT = 1L<<20, + IMF_BGTZ_BLEZ = 1L<<21, }; class Instruction { -- cgit v1.2.3