NINTV-DS/arm9/source/emucore/GROM.h
2021-09-02 17:32:31 -04:00

28 lines
359 B
C++

#ifndef GROM_H
#define GROM_H
#include "Memory.h"
#include "ROM.h"
#define GROM_SIZE 0x0800
#define GROM_ADDRESS 0x3000
class GROM : public ROM
{
friend class AY38900;
public:
GROM();
void reset();
inline UINT16 peek(UINT16 location) {return ROM::peek(location);}
private:
BOOL visible;
};
#endif