Add irq_set_status

irq_set_status can be used to clear the irq status bit so that the
interrupt will stop occuring.
This commit is contained in:
Byron Lathi
2022-03-14 13:34:33 -05:00
parent a5474b5ae5
commit f5dbe46060
3 changed files with 7 additions and 1 deletions

View File

@@ -9,5 +9,6 @@ void irq_int();
void nmi_int();
uint8_t irq_get_status();
void irq_set_status(uint8_t);
#endif