mirror of https://github.com/bsnes-emu/bsnes.git
Remove CPU::boot()
This commit is contained in:
parent
b577e6d5d0
commit
24dce7dd92
|
@ -33,9 +33,6 @@ auto CPU::Enter() -> void {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
auto CPU::boot() -> void {
|
|
||||||
}
|
|
||||||
|
|
||||||
auto CPU::main() -> void {
|
auto CPU::main() -> void {
|
||||||
if(r.wai) return instructionWait();
|
if(r.wai) return instructionWait();
|
||||||
if(r.stp) return instructionStop();
|
if(r.stp) return instructionStop();
|
||||||
|
|
|
@ -9,7 +9,6 @@ struct CPU : Processor::WDC65816, Thread, PPUcounter {
|
||||||
auto synchronizePPU() -> void;
|
auto synchronizePPU() -> void;
|
||||||
auto synchronizeCoprocessors() -> void;
|
auto synchronizeCoprocessors() -> void;
|
||||||
static auto Enter() -> void;
|
static auto Enter() -> void;
|
||||||
auto boot() -> void;
|
|
||||||
auto main() -> void;
|
auto main() -> void;
|
||||||
auto load() -> bool;
|
auto load() -> bool;
|
||||||
auto power(bool reset) -> void;
|
auto power(bool reset) -> void;
|
||||||
|
|
Loading…
Reference in New Issue