Files
tinygo/src/runtime/runtime_stm32.go
T
2018-12-18 17:17:18 +01:00

14 lines
143 B
Go

// +build stm32
package runtime
type timeUnit int64
//go:export Reset_Handler
func main() {
preinit()
initAll()
mainWrapper()
abort()
}