Lot's of small niggles corrected across the EightBit libraries

This commit is contained in:
Adrian Conlon
2024-03-18 13:03:41 +00:00
parent 739ce39360
commit 8b6c4a205e
21 changed files with 44 additions and 66 deletions

View File

@@ -8,6 +8,6 @@ EightBit::ClockedChip::ClockedChip(const ClockedChip& rhs) noexcept
bool EightBit::ClockedChip::operator==(const EightBit::ClockedChip& rhs) const noexcept {
return
Device::operator==(rhs)
Chip::operator==(rhs)
&& cycles() == rhs.cycles();
}