mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-01 16:31:42 +00:00
Tidy some white space issues a little.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
5ff883305e
commit
000b254d2a
@ -62,8 +62,6 @@ namespace EightBit {
|
||||
static std::map<uint16_t, std::vector<uint8_t>> parseHexFile(std::string path);
|
||||
void loadHexFile(std::string path);
|
||||
|
||||
|
||||
|
||||
private:
|
||||
uint8_t m_data = Chip::Mask8;
|
||||
register16_t m_address = Chip::Mask16;
|
||||
|
@ -32,6 +32,7 @@ namespace EightBit {
|
||||
#endif
|
||||
};
|
||||
uint16_t word;
|
||||
|
||||
register16_t() noexcept : word(0) {}
|
||||
register16_t(const uint16_t w) noexcept : word(w) {}
|
||||
register16_t(const uint8_t l, const uint8_t h) noexcept : low(l), high(h) {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user