Rename APU to Apu

This commit is contained in:
scawful
2024-04-13 23:25:41 -05:00
parent 89cc0703f1
commit 3effd03f1f
5 changed files with 22 additions and 22 deletions

View File

@@ -13,7 +13,7 @@ class Debugger {
public:
Debugger() = default;
// Attach the debugger to the emulator
// Debugger(CPU &cpu, PPU &ppu, APU &apu);
// Debugger(CPU &cpu, PPU &ppu, Apu &apu);
// Set a breakpoint
void SetBreakpoint(uint16_t address);
@@ -43,7 +43,7 @@ class Debugger {
// References to the emulator's components
// CPU &cpu;
// PPU &ppu;
// APU &apu;
// Apu &apu;
// Breakpoints, watchpoints, etc.
// ...