all: add emulation support for Cortex-M3 with QEMU

This commit is contained in:
Ayke van Laethem
2018-10-08 17:07:19 +02:00
parent 8982b8df83
commit a63af97e86
8 changed files with 243 additions and 16 deletions
+45
View File
@@ -0,0 +1,45 @@
// +build qemu
package runtime
// This file implements the Stellaris LM3S6965 Cortex-M3 chip as implemented by
// QEMU.
import (
"device/arm"
"unsafe"
)
type timeUnit int64
const tickMicros = 1
var timestamp timeUnit
//go:export Reset_Handler
func main() {
preinit()
initAll()
mainWrapper()
arm.SemihostingCall(arm.SemihostingReportException, arm.SemihostingApplicationExit)
abort()
}
func sleepTicks(d timeUnit) {
// TODO: actually sleep here for the given time.
timestamp += d
}
func ticks() timeUnit {
return timestamp
}
//go:volatile
type regValue uint32
// UART0 output register.
var stdoutWrite *regValue = (*regValue)(unsafe.Pointer(uintptr(0x4000c000)))
func putchar(c byte) {
*stdoutWrite = regValue(c)
}