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

@@ -13,7 +13,6 @@
#include "app/emu/cpu/internal/opcodes.h"
namespace yaze {
namespace app {
namespace emu {
enum class AddressingMode {
@@ -444,5 +443,5 @@ class AsmParser {
};
} // namespace emu
} // namespace app
} // namespace yaze

View File

@@ -3,7 +3,6 @@
#include <iostream>
namespace yaze {
namespace app {
namespace emu {
namespace memory {
namespace dma {
@@ -372,5 +371,5 @@ void StartDma(MemoryImpl* memory, uint8_t val, bool hdma) {
} // namespace dma
} // namespace memory
} // namespace emu
} // namespace app
} // namespace yaze

View File

@@ -7,7 +7,6 @@
#include "app/emu/snes.h"
namespace yaze {
namespace app {
namespace emu {
namespace memory {
namespace dma {
@@ -31,7 +30,7 @@ void DoDma(SNES* snes, MemoryImpl* memory, int cycles);
} // namespace dma
} // namespace memory
} // namespace emu
} // namespace app
} // namespace yaze
#endif // YAZE_APP_EMU_MEMORY_DMA_H

View File

@@ -4,7 +4,6 @@
#include <cstdint>
namespace yaze {
namespace app {
namespace emu {
namespace memory {
@@ -31,7 +30,7 @@ typedef struct DmaChannel {
} // namespace memory
} // namespace emu
} // namespace app
} // namespace yaze
#endif // YAZE_APP_EMU_MEMORY_DMA_CHANNEL_H

View File

@@ -8,7 +8,6 @@
#include "imgui/imgui.h"
namespace yaze {
namespace app {
namespace emu {
namespace memory {
@@ -167,5 +166,5 @@ uint32_t MemoryImpl::GetMappedAddress(uint32_t address) const {
} // namespace memory
} // namespace emu
} // namespace app
} // namespace yaze

View File

@@ -27,7 +27,6 @@
// 7F 0000-FFFF System RAM
namespace yaze {
namespace app {
namespace emu {
namespace memory {
@@ -309,7 +308,7 @@ class MemoryImpl : public Memory {
} // namespace memory
} // namespace emu
} // namespace app
} // namespace yaze
#endif // MEM_H