blob: 22bfee167de6a4814106c7b73b3576e268fbf901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
//go:build cortexm && qemu
package runtime
// This file implements the Stellaris LM3S6965 Cortex-M3 chip as implemented by
// QEMU.
import (
"device/arm"
"runtime/volatile"
"unsafe"
)
type timeUnit int64
var timestamp timeUnit
//export Reset_Handler
func main() {
preinit()
run()
// Signal successful exit.
exit(0)
}
func ticksToNanoseconds(ticks timeUnit) int64 {
return int64(ticks)
}
func nanosecondsToTicks(ns int64) timeUnit {
return timeUnit(ns)
}
func sleepTicks(d timeUnit) {
// TODO: actually sleep here for the given time.
timestamp += d
}
func ticks() timeUnit {
return timestamp
}
// UART0 output register.
var stdoutWrite = (*volatile.Register8)(unsafe.Pointer(uintptr(0x4000c000)))
func putchar(c byte) {
stdoutWrite.Set(uint8(c))
}
func getchar() byte {
// dummy, TODO
return 0
}
func buffered() int {
// dummy, TODO
return 0
}
func waitForEvents() {
arm.Asm("wfe")
}
func abort() {
exit(1)
}
func exit(code int) {
// Exit QEMU.
if code == 0 {
arm.SemihostingCall(arm.SemihostingReportException, arm.SemihostingApplicationExit)
} else {
arm.SemihostingCall(arm.SemihostingReportException, arm.SemihostingRunTimeErrorUnknown)
}
// Lock up forever (should be unreachable).
for {
arm.Asm("wfi")
}
}
|