remove app namespace

This commit is contained in:
scawful
2024-12-28 21:28:51 -05:00
parent 3ebe17c7bd
commit e05e7c35db
174 changed files with 475 additions and 658 deletions

View File

@@ -4,7 +4,6 @@
#include <cstdint>
namespace yaze {
namespace app {
namespace emu {
class Clock {
@@ -57,7 +56,7 @@ class ClockImpl : public Clock {
};
} // namespace emu
} // namespace app
} // namespace yaze
#endif // YAZE_APP_EMU_CLOCK_H_

View File

@@ -9,7 +9,6 @@
#include "app/emu/cpu/internal/opcodes.h"
namespace yaze {
namespace app {
namespace emu {
void Cpu::Reset(bool hard) {
@@ -2260,5 +2259,5 @@ uint8_t Cpu::GetInstructionLength(uint8_t opcode) {
*/
} // namespace emu
} // namespace app
} // namespace yaze

View File

@@ -13,7 +13,6 @@
#include "app/emu/memory/memory.h"
namespace yaze {
namespace app {
namespace emu {
class InstructionEntry {
@@ -799,7 +798,7 @@ class Cpu : public core::ExperimentFlags {
};
} // namespace emu
} // namespace app
} // namespace yaze
#endif // YAZE_APP_EMU_CPU_H_

View File

@@ -1,7 +1,6 @@
#include "app/emu/cpu/cpu.h"
namespace yaze {
namespace app {
namespace emu {
void Cpu::AdrImp() {
@@ -186,5 +185,5 @@ uint16_t Cpu::StackRelative() {
}
} // namespace emu
} // namespace app
} // namespace yaze

View File

@@ -5,7 +5,6 @@
#include "app/emu/cpu/cpu.h"
namespace yaze {
namespace app {
namespace emu {
/**
@@ -398,5 +397,5 @@ void Cpu::ORA(uint32_t low, uint32_t high) {
}
} // namespace emu
} // namespace app
} // namespace yaze