mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
47b667a4b8
Signed-off-by: Ron Evans <ron@hybridgroup.com>
14 lines
143 B
Go
14 lines
143 B
Go
// +build stm32
|
|
|
|
package runtime
|
|
|
|
type timeUnit int64
|
|
|
|
//go:export Reset_Handler
|
|
func main() {
|
|
preinit()
|
|
initAll()
|
|
mainWrapper()
|
|
abort()
|
|
}
|