12 if (
devices[index] ==
nullptr) {
14 case 0:
case 1:
case 2:
case 3:
15 case 4:
case 5:
case 6:
case 7:
18 case 8:
case 9:
case 10:
case 11:
19 case 12:
case 13:
case 14:
case 15:
43 while (!device->
ready(this->_elapsed)) {
66 if (!device->ready(this->_elapsed)) {
67 this->executeJMP(instruction);
75 void Computer::executeIOC(
const InstructionWord& instruction) {
76 auto device =
getDevice(instruction.field());
78 if (device->type() == IODeviceType::DISK) {
81 int32_t address = getIndexedAddress(instruction);
82 device->control(address);
92 void Computer::executeIN(
const InstructionWord& instruction) {
93 auto device =
getDevice(instruction.field());
94 if (!device->allowRead()) {
95 throw RuntimeError(_lineOffset,
"Device does not support read: " + std::to_string(instruction.field()));
98 int32_t address = getIndexedAddress(instruction,
true);
99 device->read(
memory, address);
108 void Computer::executeOUT(
const InstructionWord& instruction) {
109 auto device =
getDevice(instruction.field());
110 if (!device->allowWrite()) {
111 throw RuntimeError(_lineOffset,
"Device does not support write: " + std::to_string(instruction.field()));
114 int32_t address = getIndexedAddress(instruction,
true);
115 device->write(
memory, address);
122 void Computer::executeJRED(
const InstructionWord& instruction) {
123 auto device =
getDevice(instruction.field());
124 if (device->ready(this->_elapsed)) {
125 this->executeJMP(instruction);