mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-07-31 19:10:37 +02:00
Remove CPU::boot()
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user