Fix start_thread

This commit is contained in:
Quentin Legot
2023-03-08 21:43:03 +01:00
committed by François Autin
parent 6820086579
commit 0c3af96b78
2 changed files with 6 additions and 6 deletions

View File

@ -12,10 +12,10 @@ impl Interrupt {
}
}
pub fn set_status(&mut self, newStatus: InterruptStatus) -> InterruptStatus {
pub fn set_status(&mut self, new_status: InterruptStatus) -> InterruptStatus {
let old = self.level;
self.level = newStatus;
if newStatus == InterruptStatus::InterruptOn && old == InterruptStatus::InterruptOff {
self.level = new_status;
if new_status == InterruptStatus::InterruptOn && old == InterruptStatus::InterruptOff {
self.one_tick(1);
}
old