From 33987aff455e36811775b5bf404556c10f28567d Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 11 Oct 2025 03:27:38 -0400 Subject: [PATCH] refactor(CMake): remove old CPU implementation from build configuration - Removed the `old_cpu.cc` file from the CMake build configuration to streamline the project structure and eliminate unused code. - This change enhances maintainability by focusing on the current CPU implementation. Benefits: - Improved clarity and organization of the build system. - Reduced potential confusion from legacy code. --- src/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4b1158c1..e9f3d548 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -14,7 +14,6 @@ set( app/emu/cpu/cpu.cc app/emu/cpu/internal/addressing.cc app/emu/cpu/internal/instructions.cc - app/emu/cpu/internal/old_cpu.cc app/emu/debug/apu_debugger.cc app/emu/debug/breakpoint_manager.cc app/emu/debug/disassembly_viewer.cc