github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/machine/machine_cortexm.go (about) 1 //go:build cortexm 2 3 package machine 4 5 import "device/arm" 6 7 // CPUReset performs a hard system reset. 8 func CPUReset() { 9 arm.SystemReset() 10 }