created sicxe emulator project

This commit is contained in:
zanostro 2025-11-11 11:03:25 +01:00
parent cb38efe586
commit 3332b2971b
18 changed files with 1051 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#include "output_device.h"
OutputDevice::OutputDevice(std::ostream &out)
: outStream(out)
{
}
OutputDevice::~OutputDevice()
{
}
void OutputDevice::write(unsigned char value)
{
outStream.put(static_cast<char>(value));
outStream.flush();
}