1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-10 06:29:30 +00:00
r65emu/prom.h
2014-10-18 12:33:48 +01:00

11 lines
231 B
C++

class prom: public Memory::Device {
public:
virtual void operator= (byte) {}
virtual operator byte () { return _mem[_acc]; }
prom(const byte *mem, int bytes): Memory::Device(bytes), _mem(mem) {}
private:
const byte *_mem;
};