Reorganize emu cpu directory

This commit is contained in:
scawful
2023-12-05 21:16:16 -05:00
parent 042d07abdf
commit d0c9229093
19 changed files with 30 additions and 30 deletions

View File

@@ -1,11 +1,11 @@
#include "app/emu/cpu.h"
#include "app/emu/cpu/cpu.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "app/emu/clock.h"
#include "app/emu/internal/asm_parser.h"
#include "app/emu/internal/opcodes.h"
#include "app/emu/cpu/clock.h"
#include "app/emu/cpu/internal/opcodes.h"
#include "app/emu/debug/asm_parser.h"
#include "app/emu/memory/memory.h"
#include "app/emu/memory/mock_memory.h"
@@ -4172,7 +4172,6 @@ TEST_F(CPUTest, XCESwitchBackAndForth) {
EXPECT_FALSE(cpu.E); // Emulation mode flag should be cleared
}
} // namespace emu
} // namespace app
} // namespace yaze