1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-07-09 04:29:44 +00:00
r65emu/spiram.h
2014-10-18 12:33:48 +01:00

17 lines
303 B
C++

#ifndef __SPIRAM_H__
#define __SPIRAM_H__
class spiram: public Memory::Device {
public:
virtual void operator= (byte c);
virtual operator byte ();
void checkpoint(Stream &s);
void restore(Stream &s);
spiram(int bytes): Memory::Device(bytes) {}
void begin(byte cs, int module);
};
#endif