mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2026-04-19 02:22:56 +00:00
Tidy up noexcept specification
This commit is contained in:
@@ -10,14 +10,14 @@ Board::Board(const Configuration& configuration)
|
||||
m_disassembler(*this) {
|
||||
}
|
||||
|
||||
void Board::raisePOWER() {
|
||||
void Board::raisePOWER() noexcept {
|
||||
EightBit::Bus::raisePOWER();
|
||||
CPU().raisePOWER();
|
||||
CPU().raiseRESET();
|
||||
CPU().raiseINT();
|
||||
}
|
||||
|
||||
void Board::lowerPOWER() {
|
||||
void Board::lowerPOWER() noexcept {
|
||||
CPU().lowerPOWER();
|
||||
EightBit::Bus::lowerPOWER();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user