mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
198 B
C++
16 lines
198 B
C++
|
struct LCD : Processor, MMIO {
|
||
|
#include "mmio/mmio.hpp"
|
||
|
|
||
|
struct Status {
|
||
|
unsigned ly;
|
||
|
} status;
|
||
|
|
||
|
uint8 vram[8192];
|
||
|
uint8 oam[160];
|
||
|
|
||
|
void power();
|
||
|
void reset();
|
||
|
};
|
||
|
|
||
|
extern LCD lcd;
|