Tidy the gameboy core a little. Mainly by moving the execution loops into the bus class.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2017-10-24 00:04:13 +01:00
parent 774b181008
commit a22e59546b
8 changed files with 155 additions and 154 deletions

View File

@@ -3,7 +3,7 @@
uint8_t EightBit::InputOutput::readInputPort(uint8_t port) {
OnReadingPort(port);
auto value = input[port];
const auto value = input[port];
OnReadPort(port);
return value;
}