2017-11-03 23:45:42 +00:00
|
|
|
type
|
|
|
|
InterruptFrame = ptr object
|
|
|
|
ip: uint
|
|
|
|
cs: uint
|
|
|
|
flags: uint
|
|
|
|
sp: uint
|
|
|
|
ss: uint
|
|
|
|
|
|
|
|
# http://clang.llvm.org/docs/AttributeReference.html#interrupt-avr
|
|
|
|
proc interrupt_handler(frame: InterruptFrame) {.exportc, codegenDecl: "__attribute__((interrupt)) $# $#$#".} =
|
2017-11-09 23:20:36 +00:00
|
|
|
discard
|