Embedded Systems
tramp.txt
Associated article: Trampolines for Embedded Systems
Tags: Embedded Systems
Published source code accompanying the article by Joseph M. Link in which he examines "trampolines"--short snippets of code that start up other snippets of code to, among other things, minimize the latency of interrupt handlers.
Trampolines For Embedded Systems
by Joseph M. Link
Listing One
.text
_Trampoline:
moveml #0xC0C0,a7@- /* save d0,d1,a0,a1 on the stack */
movel #0xF0F0F0F0,a7@- /* save spot for passed int and */
movel #0xF0...


