mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-07-19 02:25:24 +00:00
GameBoy: Correct a few (very minor C++) niggles in the implementation. No functional changes.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
@@ -6,8 +6,8 @@ EightBit::IntelProcessor::IntelProcessor(Bus& bus)
|
||||
for (int i = 0; i < 0x100; ++i)
|
||||
m_decodedOpcodes.at(i) = i;
|
||||
|
||||
LoweredHALT.connect([this](EventArgs) { --PC(); });
|
||||
RaisedHALT.connect([this](EventArgs) { ++PC(); });
|
||||
LoweredHALT.connect([this](EventArgs) noexcept { --PC(); });
|
||||
RaisedHALT.connect([this](EventArgs) noexcept { ++PC(); });
|
||||
|
||||
RaisedPOWER.connect([this](EventArgs) {
|
||||
PC() = SP() = AF() = BC() = DE() = HL() = Mask16;
|
||||
|
Reference in New Issue
Block a user