mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-04-03 07:31:47 +00:00
Performance: watch out for unnecessary virtualised methods.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
28f11b15bb
commit
108f66632e
@ -125,8 +125,8 @@ namespace EightBit {
|
||||
MEMPTR().word++;
|
||||
}
|
||||
|
||||
virtual void getWordViaMemptr(register16_t& value);
|
||||
virtual void setWordViaMemptr(register16_t value);
|
||||
void getWordViaMemptr(register16_t& value);
|
||||
void setWordViaMemptr(register16_t value);
|
||||
|
||||
//
|
||||
|
||||
|
@ -106,8 +106,14 @@ namespace EightBit {
|
||||
void halt() { --PC().word; lower(HALT()); }
|
||||
void proceed() { ++PC().word; raise(HALT()); }
|
||||
|
||||
virtual uint8_t fetchByte();
|
||||
virtual void fetchWord(register16_t& output);
|
||||
uint8_t fetchByte() {
|
||||
return getByte(PC().word++);
|
||||
}
|
||||
|
||||
void fetchWord(register16_t& output) {
|
||||
output.low = fetchByte();
|
||||
output.high = fetchByte();
|
||||
}
|
||||
|
||||
void fetchWord() {
|
||||
fetchWord(MEMPTR());
|
||||
|
@ -27,12 +27,3 @@ int EightBit::Processor::singleStep() {
|
||||
reset();
|
||||
return step();
|
||||
}
|
||||
|
||||
uint8_t EightBit::Processor::fetchByte() {
|
||||
return getByte(PC().word++);
|
||||
}
|
||||
|
||||
void EightBit::Processor::fetchWord(register16_t& output) {
|
||||
output.low = fetchByte();
|
||||
output.high = fetchByte();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user