mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-04-05 05:38:50 +00:00
Some more small tidy ups.
Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
This commit is contained in:
parent
327d391ecb
commit
5f288cf0e3
@ -289,22 +289,22 @@ namespace EightBit {
|
||||
|
||||
void sta() {
|
||||
fetchWord();
|
||||
m_memory.set(MEMPTR().word, A());
|
||||
memptrReference() = A();
|
||||
}
|
||||
|
||||
void lda() {
|
||||
fetchWord();
|
||||
A() = m_memory.get(MEMPTR().word);
|
||||
A() = memptrReference();
|
||||
}
|
||||
|
||||
void shld() {
|
||||
fetchWord();
|
||||
m_memory.setWord(MEMPTR().word, HL());
|
||||
setWordViaMemptr(HL());
|
||||
}
|
||||
|
||||
void lhld() {
|
||||
fetchWord();
|
||||
HL() = m_memory.getWord(MEMPTR().word);
|
||||
getWordViaMemptr(HL());
|
||||
}
|
||||
|
||||
void xchg() {
|
||||
|
@ -68,9 +68,6 @@ namespace EightBit {
|
||||
|
||||
bool m_stopped;
|
||||
|
||||
std::array<bool, 8> m_halfCarryTableAdd = { { false, false, true, false, true, false, true, true } };
|
||||
std::array<bool, 8> m_halfCarryTableSub = { { false, true, true, true, false, false, false, true } };
|
||||
|
||||
int fetchExecute() {
|
||||
return execute(fetchByte());
|
||||
}
|
||||
|
@ -120,8 +120,7 @@ namespace EightBit {
|
||||
}
|
||||
|
||||
void incrementRefresh() {
|
||||
auto incremented = (REFRESH() + 1) & Mask7;
|
||||
REFRESH() = (REFRESH() & Bit7) | incremented;
|
||||
REFRESH() = (REFRESH() & Bit7) | (REFRESH() + 1) & Mask7;
|
||||
}
|
||||
|
||||
uint8_t& DISPLACED() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user