8#ifndef __LIBDRAGON_INTERRUPT_H
9#define __LIBDRAGON_INTERRUPT_H
378#define RESET_TIME_LENGTH TICKS_FROM_MS(200)
411static inline __attribute__((deprecated(
"calling init_interrupts no longer required")))
412void init_interrupts() {}
414static inline __attribute__((deprecated(
"use register_RESET_handler instead")))
415void register_reset_handler(
void (*callback)() )
interrupt_state_t
State of interrupts on the system.
Definition interrupt.h:55
@ INTERRUPTS_DISABLED
Interrupts are currently disabled.
Definition interrupt.h:59
@ INTERRUPTS_ENABLED
Interrupts are currently enabled.
Definition interrupt.h:61
@ INTERRUPTS_UNINITIALIZED
Interrupt controller has not been initialized.
Definition interrupt.h:57
void unregister_AI_handler(void(*callback)())
Unregister an AI callback.
Definition interrupt.c:298
void unregister_SI_handler(void(*callback)())
Unegister a SI callback.
Definition interrupt.c:338
void register_CART_handler(void(*callback)())
Register a CART interrupt callback.
Definition interrupt.c:364
void enable_interrupts()
Enable interrupts systemwide.
Definition interrupt.c:521
void unregister_TI_handler(void(*callback)())
Unregister a timer callback.
Definition interrupt.c:359
void register_AI_handler(void(*callback)())
Register an AI callback.
Definition interrupt.c:293
void set_SP_interrupt(int active)
Enable or disable the SP interrupt.
Definition interrupt.c:433
void set_SI_interrupt(int active)
Enable or disable the SI interrupt.
Definition interrupt.c:428
uint32_t exception_reset_time(void)
Check whether the RESET button was pressed and how long we are into the reset process.
Definition interrupt.c:561
void unregister_RESET_handler(void(*callback)())
Unregister a RESET interrupt callback.
Definition interrupt.c:387
void register_PI_handler(void(*callback)())
Register a PI callback.
Definition interrupt.c:313
void unregister_VI_handler(void(*callback)())
Unregister a VI callback.
Definition interrupt.c:308
void disable_interrupts()
Disable interrupts systemwide.
Definition interrupt.c:496
void unregister_DP_handler(void(*callback)())
Unregister a DP callback.
Definition interrupt.c:328
void set_TI_interrupt(int active)
Enable or disable the timer interrupt.
Definition interrupt.c:438
void set_PI_interrupt(int active)
Enable or disable the PI interrupt.
Definition interrupt.c:418
void unregister_PI_handler(void(*callback)())
Unegister a PI callback.
Definition interrupt.c:318
void unregister_CART_handler(void(*callback)())
Unregister a CART interrupt callback.
Definition interrupt.c:369
void set_AI_interrupt(int active)
Enable or disable the AI interrupt.
Definition interrupt.c:400
void register_TI_handler(void(*callback)())
Register a timer callback.
Definition interrupt.c:354
void register_RESET_handler(void(*callback)())
Register a handler that will be called when the user presses the RESET button.
Definition interrupt.c:374
void register_VI_handler(void(*callback)())
Register a VI callback.
Definition interrupt.c:303
void set_CART_interrupt(int active)
Enable or disable the CART interrupt.
Definition interrupt.c:450
void set_DP_interrupt(int active)
Enable or disable the DP interrupt.
Definition interrupt.c:423
void unregister_SP_handler(void(*callback)())
Unegister a SP callback.
Definition interrupt.c:348
void set_RESET_interrupt(int active)
Enable the RESET interrupt.
Definition interrupt.c:462
void register_SI_handler(void(*callback)())
Register a SI callback.
Definition interrupt.c:333
void register_SP_handler(void(*callback)())
Register a SP callback.
Definition interrupt.c:343
void register_DP_handler(void(*callback)())
Register a DP callback.
Definition interrupt.c:323
void set_VI_interrupt(int active, unsigned long line)
Enable or disable the VI interrupt.
Definition interrupt.c:405
interrupt_state_t get_interrupts_state()
Return the current state of interrupts.
Definition interrupt.c:544