Remove unused includes and clean up header files
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
|
||||
#include "app/core/common.h"
|
||||
#include "app/emu/cpu/internal/opcodes.h"
|
||||
|
||||
namespace yaze {
|
||||
|
||||
@@ -3,13 +3,9 @@
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <iostream>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
#include "app/core/common.h"
|
||||
#include "app/emu/cpu/clock.h"
|
||||
#include "app/emu/cpu/internal/opcodes.h"
|
||||
#include "app/emu/memory/memory.h"
|
||||
|
||||
namespace yaze {
|
||||
@@ -797,7 +793,6 @@ class Cpu {
|
||||
};
|
||||
|
||||
} // namespace emu
|
||||
|
||||
} // namespace yaze
|
||||
|
||||
#endif // YAZE_APP_EMU_CPU_H_
|
||||
#endif // YAZE_APP_EMU_CPU_H_
|
||||
|
||||
@@ -185,5 +185,4 @@ uint16_t Cpu::StackRelative() {
|
||||
}
|
||||
|
||||
} // namespace emu
|
||||
|
||||
} // namespace yaze
|
||||
} // namespace yaze
|
||||
|
||||
@@ -1,16 +1,8 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "app/emu/cpu/cpu.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace emu {
|
||||
|
||||
/**
|
||||
* 65816 Instruction Set
|
||||
*/
|
||||
|
||||
void Cpu::And(uint32_t low, uint32_t high) {
|
||||
if (GetAccumulatorSize()) {
|
||||
CheckInt();
|
||||
@@ -397,5 +389,4 @@ void Cpu::ORA(uint32_t low, uint32_t high) {
|
||||
}
|
||||
|
||||
} // namespace emu
|
||||
|
||||
} // namespace yaze
|
||||
} // namespace yaze
|
||||
|
||||
Reference in New Issue
Block a user