-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtraceMonitor.go
110 lines (92 loc) · 1.99 KB
/
traceMonitor.go
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package izapple2
import (
"fmt"
)
/*
Trace the inpit and output of using the wozmon calls.
*/
type traceMonitor struct {
a *Apple2
closingBuffer bool
buffer string
}
const (
wozmonPrompt uint16 = 0x0033
wozmonGETLNZ uint16 = 0xfd67
woamonGETLN uint16 = 0xfd6a
wozmonGETLNReturn uint16 = 0xfd90
wozmonRDCHAR uint16 = 0xfd35
wozmonRDKEY uint16 = 0xfd0c
wozmonKEYIN uint16 = 0xfd1b
wozmonCOUT uint16 = 0xfded
wozmonCOUT1 uint16 = 0xfdf0
wozmonCOUTZ uint16 = 0xfdf6
)
func newTraceMonitor() *traceMonitor {
var t traceMonitor
return &t
}
func (t *traceMonitor) connect(a *Apple2) {
t.a = a
}
func (t *traceMonitor) inspect() {
if t.a.dmaActive {
return
}
if t.a.mmu.altMainRAMActiveRead {
// We want to trace only the activity on the ROM
return
}
pc, _ := t.a.cpu.GetPCAndSP()
a, _, _, _ := t.a.cpu.GetAXYP()
desc := ""
switch pc {
case wozmonGETLNZ:
desc = "GETLNZ"
case woamonGETLN:
fmt.Printf("Wozmon output: %s\n", t.buffer)
t.buffer = ""
desc = "GETLN"
case wozmonGETLNReturn:
t.closingBuffer = true
//desc = "GETLN return"
case wozmonRDKEY:
//desc = "RDKEY"
case wozmonKEYIN:
//desc = "KEYIN"
case wozmonCOUT:
//desc = fmt.Sprintf("COUT 0x%02x %c", a, toAscii(a))
if t.closingBuffer {
fmt.Printf("Wozmon input: %s\n", t.buffer)
t.buffer = ""
t.closingBuffer = false
desc = fmt.Sprintf("GETLN returns <<%s>>", t.getInputBuffer())
}
case wozmonCOUT1:
t.buffer += string(toAscii(a))
//desc = fmt.Sprintf("COUT1 0x%02x %c", a, toAscii(a))
case wozmonCOUTZ:
desc = "COUTZ"
}
if desc != "" {
fmt.Printf("Wozmon call to $%04x %s\n", pc, desc)
}
}
func toAscii(b uint8) rune {
b = b & 0x7f
if b < 0x20 {
return rune(uint16(b) + 0x2400)
}
return rune(b)
}
func (t *traceMonitor) getInputBuffer() string {
buffer := ""
for address := uint16(0x200); address < 0x300; address++ {
b := t.a.mmu.Peek(address)
buffer += string(toAscii(b))
if b == 0x8d {
break
}
}
return buffer
}