Some more small tidy ups.

Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
This commit is contained in:
Adrian.Conlon 2017-06-16 20:31:32 +01:00
parent 327d391ecb
commit 5f288cf0e3
3 changed files with 5 additions and 9 deletions

View File

@ -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() {

View File

@ -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());
}

View File

@ -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() {