mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 00:15:47 -04:00
CPU: Basic recompiler implementation for x64 (lui, ori, addiu)
Disabled by default.
This commit is contained in:
@ -10,6 +10,7 @@ class StateWrapper;
|
||||
|
||||
namespace CPU {
|
||||
class Core;
|
||||
class CodeCache;
|
||||
}
|
||||
|
||||
class Bus;
|
||||
@ -97,6 +98,7 @@ private:
|
||||
|
||||
HostInterface* m_host_interface;
|
||||
std::unique_ptr<CPU::Core> m_cpu;
|
||||
std::unique_ptr<CPU::CodeCache> m_cpu_code_cache;
|
||||
std::unique_ptr<Bus> m_bus;
|
||||
std::unique_ptr<DMA> m_dma;
|
||||
std::unique_ptr<InterruptController> m_interrupt_controller;
|
||||
|
Reference in New Issue
Block a user