created sicxe emulator project
This commit is contained in:
parent
cb38efe586
commit
3332b2971b
18 changed files with 1051 additions and 0 deletions
16
simulator_SIC_XE/include/device.h
Normal file
16
simulator_SIC_XE/include/device.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue