blob: 8f9d64b2b1d9c9dd4d64561bb6a632520669b82c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | //go:build (!arm64 && !amd64) || tinygo
package wazevo
import (
	"runtime"
)
func entrypoint(preambleExecutable, functionExecutable *byte, executionContextPtr uintptr, moduleContextPtr *byte, paramResultStackPtr *uint64, goAllocatedStackSlicePtr uintptr) {
	panic(runtime.GOARCH)
}
func afterGoFunctionCallEntrypoint(executable *byte, executionContextPtr uintptr, stackPointer, framePointer uintptr) {
	panic(runtime.GOARCH)
}
 |