bsnes/higan/pce/vdc/vdc.hpp

16 lines
247 B
C++

//Video Display Controller
struct VDC : Thread {
static auto Enter() -> void;
auto main() -> void;
auto step(uint clocks) -> void;
auto refresh() -> void;
auto power() -> void;
private:
uint32 buffer[512 * 484];
};
extern VDC vdc;