Skip to content

Commit

Permalink
update PSEMU/CPU.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Cherrytree56567 committed Oct 6, 2023
1 parent 139f47b commit de4b3a2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions PSEMU/CPU.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@
#include "CPURegisters.h"
#include "Coprocessor.h"

struct MEM {
uint reg = 0;
uint value = 0;
};

class CPU {
public:
CPU(Memory& memorya) : memory(memorya), numInstructions(0) {}
Expand Down Expand Up @@ -86,7 +81,6 @@ void op_sllv(uint32_t instruction);
Coprocessor0 coprocessor0;
Memory& memory;
Logging console;
MEM memory_load;
bool checkForInterrupts() {
// Check if there is an interrupt request
uint32_t status = registers.getC0Register(coprocessor0.STATUS);
Expand Down

0 comments on commit de4b3a2

Please sign in to comment.