Implement missed branching instructions and break

This commit is contained in:
2025-07-23 19:04:23 -04:00
parent 34d30ed47c
commit 6132f173c4
2 changed files with 78 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ class CPU {
Bus* bus;
uint64_t cycles;
bool emulation_mode = false;
// Status flags
enum Flags {
@@ -244,6 +245,12 @@ public:
void BIT_AbsoluteX();
void BIT_DirectPage();
void BIT_DirectPageX();
void BRA_Relative();
void BRL_RelativeLong();
void BVC_Relative();
void BVS_Relative();
void BRK();
};
#endif //CPU_H