MIXAL
|
#include <registers.h>
Public Member Functions | |
Register2 () | |
Register2 (int16_t value) | |
Register2 (bool _negative, uint8_t _byte1, uint8_t _byte2) | |
Register2 (char sign, uint8_t _byte1, uint8_t _byte2) | |
void | reset () |
uint8_t | operator[] (int index) const |
uint16_t | bytes12 () const |
int16_t | value () const |
void | set (int16_t value) |
void | set (int index, int8_t val) |
void | set (bool negative, uint8_t byte1, uint8_t byte2) |
void | set (char sign, uint8_t byte1, uint8_t byte2) |
Public Attributes | |
bool | negative |
uint8_t | byte1 |
uint8_t | byte2 |
The register with 2 bytes (rI, rJ).
The 2 bytes registers are used to represent locations and offsets. It contains a sign indicator (+
or -
) and 2 bytes. Each byte can represent at least [0, 64) integers.
Definition at line 23 of file registers.h.
mixal::Register2::Register2 | ( | ) |
Initialize the register with zeros.
Definition at line 7 of file registers.cpp.
|
explicit |
Initialize the register with an integer value.
Definition at line 10 of file registers.cpp.
mixal::Register2::Register2 | ( | bool | _negative, |
uint8_t | _byte1, | ||
uint8_t | _byte2 | ||
) |
Initialize the register with all the specific values.
Definition at line 14 of file registers.cpp.
mixal::Register2::Register2 | ( | char | sign, |
uint8_t | _byte1, | ||
uint8_t | _byte2 | ||
) |
Initialize the register with all the specific values.
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 18 of file registers.cpp.
uint16_t mixal::Register2::bytes12 | ( | ) | const |
Get the absolution value of the register.
Definition at line 35 of file registers.cpp.
Referenced by value().
uint8_t mixal::Register2::operator[] | ( | int | index | ) | const |
Get the value with index in [1, 2].
std::runtime_error | when the index is not in [1, 2]. |
Definition at line 25 of file registers.cpp.
|
inline |
Reset the values in the register to 0.
Definition at line 44 of file registers.h.
Referenced by mixal::Computer::reset().
void mixal::Register2::set | ( | bool | negative, |
uint8_t | byte1, | ||
uint8_t | byte2 | ||
) |
Set all the values.
Definition at line 67 of file registers.cpp.
void mixal::Register2::set | ( | char | sign, |
uint8_t | byte1, | ||
uint8_t | byte2 | ||
) |
Set all the values.
std::runtime_error | when the sign is neither '+' nor '-'. |
Definition at line 73 of file registers.cpp.
void mixal::Register2::set | ( | int | index, |
int8_t | val | ||
) |
Set specific byte with the given index in [1, 2].
val | The behavior is undefined if it is greater than 63. |
std::runtime_error | when the index is not in [1, 2]. |
Definition at line 57 of file registers.cpp.
void mixal::Register2::set | ( | int16_t | value | ) |
Set the register with an integer.
The sign will be set only when the input is non-zero. Therefore to set the word to -0
with this function, one can set it with a negative value first, then set it to 0.
The least significant 12 bits will be saved to the word. Each byte contains 6 bits. The byte2 will contain the least significant 6 bits.
Definition at line 46 of file registers.cpp.
References value().
Referenced by Register2().
int16_t mixal::Register2::value | ( | ) | const |
Get the value represented by the register.
Definition at line 41 of file registers.cpp.
References bytes12().
Referenced by Register2(), and set().