| 231 | } |
| 232 | |
| 233 | void RegisterInterruptHandler(uint8_t interrupt, isr_t handler, void* data) { |
| 234 | interrupt_handlers[interrupt] = {.handler = handler, .data = data}; |
| 235 | } |
| 236 | |
| 237 | uint8_t ReserveUnusedInterrupt(){ |
| 238 | uint8_t interrupt = 0xFF; |
no outgoing calls
no test coverage detected