github.com/aykevl/tinygo@v0.5.0/src/runtime/runtime_stm32.go (about)

     1  // +build stm32
     2  
     3  package runtime
     4  
     5  type timeUnit int64
     6  
     7  //go:export Reset_Handler
     8  func main() {
     9  	preinit()
    10  	initAll()
    11  	callMain()
    12  	abort()
    13  }