tinygo/ir
Ayke van Laethem 13cb7d6503
avr: add interrupt support
Interrupts are supported using a special //go:interrupt pragma.
For example:

//go:interrupt INT0_vect
func handleINT0() {
    // do something here
}
2018-09-25 13:47:20 +02:00
..
interpreter.go compiler: refactor IR parts into separate package 2018-09-22 20:32:07 +02:00
ir.go avr: add interrupt support 2018-09-25 13:47:20 +02:00
passes.go avr: add interrupt support 2018-09-25 13:47:20 +02:00