_demo/empty exports Reset_Handler and handleHardFault (to compatible with tinygo)

This commit is contained in:
Li Jie
2025-08-21 22:18:14 +08:00
parent 6e20a435af
commit 87c50cf22a
2 changed files with 11 additions and 0 deletions

9
_demo/empty/C/c.go Normal file
View File

@@ -0,0 +1,9 @@
package C
func XhandleHardFault() {
}
func Reset_Handler() {
}

View File

@@ -1,4 +1,6 @@
package main
import _ "github.com/goplus/llgo/_demo/empty/C"
func main() {
}