Remove CPU::boot()

This commit is contained in:
byuu 2019-08-02 11:25:59 +09:00
parent b577e6d5d0
commit 24dce7dd92
2 changed files with 0 additions and 4 deletions

View File

@ -33,9 +33,6 @@ auto CPU::Enter() -> void {
}
}
auto CPU::boot() -> void {
}
auto CPU::main() -> void {
if(r.wai) return instructionWait();
if(r.stp) return instructionStop();

View File

@ -9,7 +9,6 @@ struct CPU : Processor::WDC65816, Thread, PPUcounter {
auto synchronizePPU() -> void;
auto synchronizeCoprocessors() -> void;
static auto Enter() -> void;
auto boot() -> void;
auto main() -> void;
auto load() -> bool;
auto power(bool reset) -> void;