Embedded Systems
intsched.txt
Associated article: Interrupt Scheduling
Tags: Embedded Systems
Published source code accompanying the article by John Pote in which he presents an interrupt scheduler designed to accomodate more handlers if and when they're needed, or if priorities change.
Interrupt Scheduling
by John Pote
Example 1:
SchedListElem .struct
reqCnt .byte ;request count bits 1-7, RUNNING flag bit 0
indxNxt .byte ;offset to next list member
funcPt .word ;address of interrupt handler
.endstruct
Example 2:
scheduler: set pointer to point to first member ...


