Adding filters

This commit is contained in:
Anonymus Raccoon
2020-03-24 21:06:54 +01:00
parent 256fea8955
commit 40f843da75
22 changed files with 160 additions and 28 deletions
+10
View File
@@ -413,4 +413,14 @@ namespace ComSquare::CPU
{
return this->_bus->read(++this->_registers.s) + (this->_bus->read(++this->_registers.s) << 8u);
}
std::string CPU::getName()
{
return "CPU";
}
Component CPU::getComponent()
{
return Cpu;
}
}