1
0
mirror of https://github.com/jscrane/r65emu.git synced 2025-08-10 09:24:57 +00:00
Files
r65emu/prom.h
Stephen Crane a19bbc6898 initial commit
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;
};