mirror of
https://github.com/wavemotion-dave/NINTV-DS.git
synced 2025-06-18 13:55:33 -04:00
28 lines
359 B
C++
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
|