Reconcile debugger and save state stuff into a single implementation.
Fixes #497 and fixes #496. Still rough edges, but at least less duplication.
This commit is contained in:
@@ -12,7 +12,6 @@ test_suite("xenia-cpu-tests", project_root, ".", {
|
||||
"xenia-cpu-backend-x64",
|
||||
|
||||
-- TODO(benvanik): cut these dependencies?
|
||||
"xenia-debug",
|
||||
"xenia-kernel",
|
||||
},
|
||||
})
|
||||
|
||||
@@ -39,8 +39,7 @@ class TestFunction {
|
||||
|
||||
#if XENIA_TEST_X64
|
||||
{
|
||||
auto processor =
|
||||
std::make_unique<Processor>(nullptr, memory.get(), nullptr, nullptr);
|
||||
auto processor = std::make_unique<Processor>(memory.get(), nullptr);
|
||||
processor->Setup();
|
||||
processors.emplace_back(std::move(processor));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user