created basic simulator
This commit is contained in:
parent
8c02a9e950
commit
5a06b2bc0b
12 changed files with 541 additions and 0 deletions
12
ass2/Device.cpp
Normal file
12
ass2/Device.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include "Device.h"
|
||||
|
||||
bool Device::test() const {
|
||||
return true;
|
||||
}
|
||||
|
||||
uint8_t Device::read() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void Device::write(uint8_t value) {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue