MIXAL
machine_io.cpp
Go to the documentation of this file.
1 #include <iostream>
2 #include "machine.h"
3 
9 namespace mixal {
10 
11 IODevice* Computer::getDevice(int32_t index) {
12  if (devices[index] == nullptr) {
13  switch (index) {
14  case 0: case 1: case 2: case 3:
15  case 4: case 5: case 6: case 7:
16  devices[index] = new IODeviceTape();
17  break;
18  case 8: case 9: case 10: case 11:
19  case 12: case 13: case 14: case 15:
20  devices[index] = new IODeviceDisk();
21  break;
22  case 16:
23  devices[index] = new IODeviceCardReader();
24  break;
25  case 17:
26  devices[index] = new IODeviceCardPunch();
27  break;
28  case 18:
29  devices[index] = new IODeviceLinePrinter();
30  break;
31  case 19:
32  devices[index] = new IODeviceTypewriter();
33  break;
34  case 20:
35  devices[index] = new IODevicePaperTape();
36  break;
37  }
38  }
39  return devices[index];
40 }
41 
43  while (!device->ready(this->_elapsed)) {
44  ++this->_elapsed;
45  }
46 }
47 
49  for (int i = 0; i < NUM_IO_DEVICE; ++i) {
50  if (devices[i] != nullptr) {
51  waitDevice(devices[i]);
52  }
53  }
54 }
55 
56 ComputerWord& Computer::getDeviceWordAt(int32_t device, int32_t index) {
57  return this->getDevice(device)->wordAt(index);
58 }
59 
64 void Computer::executeJBUS(const InstructionWord& instruction) {
65  auto device = getDevice(instruction.field());
66  if (!device->ready(this->_elapsed)) {
67  this->executeJMP(instruction);
68  }
69 }
70 
75 void Computer::executeIOC(const InstructionWord& instruction) {
76  auto device = getDevice(instruction.field());
77  waitDevice(device);
78  if (device->type() == IODeviceType::DISK) {
79  device->control(rX.value());
80  } else {
81  int32_t address = getIndexedAddress(instruction);
82  device->control(address);
83  }
84 }
85 
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()));
96  }
97  waitDevice(device);
98  int32_t address = getIndexedAddress(instruction, true);
99  device->read(memory, address);
100 }
101 
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()));
112  }
113  waitDevice(device);
114  int32_t address = getIndexedAddress(instruction, true);
115  device->write(memory, address);
116 }
117 
122 void Computer::executeJRED(const InstructionWord& instruction) {
123  auto device = getDevice(instruction.field());
124  if (device->ready(this->_elapsed)) {
125  this->executeJMP(instruction);
126  }
127 }
128 
129 }; // namespace mixal
mixal::Computer::waitDevice
void waitDevice(IODevice *device)
Definition: machine_io.cpp:42
mixal::ComputerWord
Definition: memory.h:25
mixal::IODevicePaperTape
Definition: io.h:188
mixal::IODeviceCardReader
Definition: io.h:154
mixal::ComputerWord::field
uint8_t field() const
Definition: memory.h:147
mixal::Computer::rX
Register5 rX
Definition: machine.h:32
mixal::Computer::memory
ComputerWord memory[NUM_MEMORY]
Definition: machine.h:38
mixal::IODeviceTape
Definition: io.h:110
mixal::IODevice::wordAt
virtual ComputerWord & wordAt(int32_t index)=0
machine.h
The virtual machine.
mixal::Computer::waitDevices
void waitDevices()
Definition: machine_io.cpp:48
mixal::ComputerWord::value
int32_t value() const
Definition: memory.cpp:132
mixal::IODevice::ready
virtual bool ready(int32_t elapsed)
Definition: io.cpp:14
mixal::IODeviceCardPunch
Definition: io.h:160
mixal::Computer::getDeviceWordAt
ComputerWord & getDeviceWordAt(int32_t device, int32_t index)
Definition: machine_io.cpp:56
mixal::IODeviceTypewriter
Definition: io.h:182
mixal::Computer::devices
std::vector< IODevice * > devices
Definition: machine.h:39
mixal::Computer::getDevice
IODevice * getDevice(int32_t index)
Definition: machine_io.cpp:11
mixal::IODeviceLinePrinter
Definition: io.h:166
mixal::IODeviceDisk
Definition: io.h:128
mixal::Computer::NUM_IO_DEVICE
static const int NUM_IO_DEVICE
Definition: machine.h:30
mixal::IODevice
Definition: io.h:40