16 lines
395 B
Go
16 lines
395 B
Go
//go:build !arm64
|
|
|
|
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 uintptr) {
|
|
panic(runtime.GOARCH)
|
|
}
|