mirror of https://github.com/bsnes-emu/bsnes.git
35 lines
614 B
C++
35 lines
614 B
C++
//Motorola 68000
|
|
|
|
struct CPU : Processor::M68K, Thread {
|
|
enum class Interrupt : uint {
|
|
HorizontalBlank,
|
|
VerticalBlank,
|
|
};
|
|
|
|
using Thread::synchronize;
|
|
|
|
static auto Enter() -> void;
|
|
auto boot() -> void;
|
|
auto main() -> void;
|
|
auto step(uint clocks) -> void override;
|
|
auto synchronize() -> void;
|
|
|
|
auto raise(Interrupt) -> void;
|
|
auto lower(Interrupt) -> void;
|
|
|
|
auto power() -> void;
|
|
|
|
//serialization.cpp
|
|
auto serialize(serializer&) -> void;
|
|
|
|
vector<Thread*> peripherals;
|
|
|
|
private:
|
|
struct State {
|
|
uint32 interruptLine;
|
|
uint32 interruptPending;
|
|
} state;
|
|
};
|
|
|
|
extern CPU cpu;
|