spo/simulator_SIC_XE/include/device.h
2025-11-11 11:03:25 +01:00

16 lines
No EOL
194 B
C++

#ifndef DEVICE_H
#define DEVICE_H
class Device {
public:
Device();
bool test();
virtual unsigned char read();
virtual void write(unsigned char value);
};
#endif // DEVICE_H