diff --git a/PSEMU/CPU.cpp b/PSEMU/CPU.cpp index f00b15a..cccd51b 100644 --- a/PSEMU/CPU.cpp +++ b/PSEMU/CPU.cpp @@ -158,6 +158,11 @@ void CPU::decode_execute(Instruction instruction) { std::cout << "[CPU] INFO: BLEZ (I-Type)\n"; break; + case (0b100100): + op_lbu(instruction); + std::cout << "[CPU] INFO: LBU (I-Type)\n"; + break; + default: std::cout << "[CPU] ERROR: Unhandled Instruction \n"; exit(0);