bsnes/higan/md/vdp/vdp.hpp

13 lines
196 B
C++

//Yamaha YM7101
struct VDP : Thread {
static auto Enter() -> void;
auto main() -> void;
auto step(uint clocks) -> void;
auto power() -> void;
auto reset() -> void;
};
extern VDP vdp;