Finishing the main and disabling the invalid opcode throw for now

This commit is contained in:
AnonymusRaccoon
2020-02-11 14:47:56 +01:00
parent f886f8f53c
commit d7002336fa
6 changed files with 11 additions and 7 deletions

View File

@@ -125,7 +125,7 @@ namespace ComSquare::APU
//! @param data The new value of the register.
//! @throw InvalidAddress will be thrown if the address is more than $FF (the number of register).
void write(uint24_t addr, uint8_t data) override;
bool update(unsigned cycles);
void update(unsigned cycles);
};
}