mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
247 B
C++
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;
|