Go to the documentation of this file. 1 #ifndef INCLUDE_MACHINE_H_
2 #define INCLUDE_MACHINE_H_
8 #include <unordered_map>
24 using InstructionWord = ComputerWord;
63 inline int line()
const {
return _lineOffset; }
65 inline int elapsed()
const {
return _elapsed; }
83 void loadCodes(
const std::string& codes,
bool addHalt =
true);
85 void loadCodes(
const std::vector<std::string>& codes,
bool addHalt =
true);
88 int32_t _pesudoVarIndex;
92 std::unordered_map<std::string, AtomicValue> _constants;
95 std::string getPesudoSymbolname();
98 int32_t getIndexedAddress(
const InstructionWord& instruction,
bool checkRange =
false);
106 int32_t checkRange(int32_t value,
int bytes = 5);
109 uint8_t getAX(
int index)
const;
111 void setAX(
int index, uint8_t value);
187 #endif // INCLUDE_MACHINE_H_
static const int NUM_INDEX_REGISTER
void waitDevice(IODevice *device)
void loadCodes(const std::string &codes, bool addHalt=true)
The definition of some errors.
static const int NUM_MEMORY
std::string getSingleLineSymbol()
ComputerWord memory[NUM_MEMORY]
const ComputerWord & memoryAt(int16_t index) const
ComparisonIndicator comparison
void executeUntilSelfLoop()
void executeSinglePesudo(ParsedResult *instruction)
ComputerWord & getDeviceWordAt(int32_t device, int32_t index)
std::vector< IODevice * > devices
IODevice * getDevice(int32_t index)
Definitions of instructions.
static const int NUM_IO_DEVICE
Register2 & rI(int index)
The definition of special flags.
The definition of registers.
The definition of a computer word.