mirror of https://github.com/tinygo-org/tinygo.git
Scott Feldman
2 years ago
committed by
GitHub
1 changed files with 10 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
//go:build cortexm
|
|||
|
|||
package machine |
|||
|
|||
import "device/arm" |
|||
|
|||
// CPUReset performs a hard system reset.
|
|||
func CPUReset() { |
|||
arm.SystemReset() |
|||
} |
Loading…
Reference in new issue