created basic simulator

This commit is contained in:
privsk 2025-11-27 08:17:43 +01:00
parent 8c02a9e950
commit 5a06b2bc0b
12 changed files with 541 additions and 0 deletions

12
ass2/Device.cpp Normal file
View 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) {
}