2021-07-22 17:33:34 +00:00
|
|
|
package izapple2
|
|
|
|
|
2021-07-23 15:52:08 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
2021-07-22 17:33:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
See:
|
|
|
|
https://github.com/bobbimanners/Applecorn
|
2021-07-23 15:52:08 +00:00
|
|
|
Chapter 45 https://raw.githubusercontent.com/bobbimanners/Applecorn/main/Manuals/Acorn%20BBC%20Micro%20User%20Guide.pdf
|
2021-07-22 17:33:34 +00:00
|
|
|
http://beebwiki.mdfs.net/Category:MOS_API
|
|
|
|
http://beebwiki.mdfs.net/OSBYTEs
|
|
|
|
http://mdfs.net/Docs/Comp/BBC/Osbyte00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
type traceApplecorn struct {
|
|
|
|
a *Apple2
|
|
|
|
skipConsole bool
|
|
|
|
osbyteNames [256]string
|
2021-07-24 17:41:53 +00:00
|
|
|
call mosCallData
|
2021-07-23 16:11:30 +00:00
|
|
|
lastDepth int
|
2021-07-24 17:41:53 +00:00
|
|
|
wasInKernel bool
|
2021-07-23 15:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type mosCallData struct {
|
|
|
|
api uint16
|
|
|
|
a, x, y uint8
|
2021-07-24 17:41:53 +00:00
|
|
|
skipLog bool
|
2021-07-22 17:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2021-07-24 17:41:53 +00:00
|
|
|
applecornKernelStart uint16 = 0xc000 // Code above this is out of BBC territory
|
|
|
|
applecornNoCaller uint16 = 0xffff
|
2021-07-22 17:33:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func newTraceApplecorn(a *Apple2, skipConsole bool) *traceApplecorn {
|
|
|
|
var t traceApplecorn
|
|
|
|
t.a = a
|
|
|
|
t.skipConsole = skipConsole
|
|
|
|
t.osbyteNames[0x7c] = "clear escape condition"
|
|
|
|
t.osbyteNames[0x7d] = "set escape condition"
|
|
|
|
t.osbyteNames[0x7e] = "ack detection of ESC"
|
|
|
|
t.osbyteNames[0x81] = "Read key with time lim"
|
|
|
|
t.osbyteNames[0x82] = "read high order address"
|
|
|
|
t.osbyteNames[0x83] = "read bottom of user mem"
|
|
|
|
t.osbyteNames[0x84] = "read top of user mem"
|
|
|
|
t.osbyteNames[0x85] = "top user mem for mode"
|
|
|
|
t.osbyteNames[0x86] = "read cursor pos"
|
|
|
|
t.osbyteNames[0xDA] = "clear VDU queue"
|
|
|
|
return &t
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *traceApplecorn) inspect() {
|
2021-07-24 17:41:53 +00:00
|
|
|
pc, _ := t.a.cpu.GetPCAndSP()
|
|
|
|
inKernel := pc >= applecornKernelStart
|
2021-07-24 12:02:50 +00:00
|
|
|
|
2021-07-24 17:41:53 +00:00
|
|
|
if !t.wasInKernel && inKernel {
|
|
|
|
regA, regX, regY, _ := t.a.cpu.GetAXYP()
|
|
|
|
|
|
|
|
s := "UNKNOWN"
|
2021-07-24 12:02:50 +00:00
|
|
|
skip := false
|
2021-07-22 17:33:34 +00:00
|
|
|
|
2021-07-24 12:02:50 +00:00
|
|
|
// Page 2 vectors
|
|
|
|
switch pc {
|
|
|
|
case t.vector(0x0208): // OSCLI vector
|
|
|
|
pc = 0xfff7
|
|
|
|
case t.vector(0x020A): // OSBYTE vector
|
|
|
|
pc = 0xfff4
|
|
|
|
case t.vector(0x020C): // OSWORD vector
|
|
|
|
pc = 0xfff1
|
|
|
|
case t.vector(0x020E): // OSWRCH vector
|
|
|
|
pc = 0xffee
|
|
|
|
case t.vector(0x0210): // OSRDCH vector
|
|
|
|
pc = 0xffe0
|
|
|
|
case t.vector(0x0212): // OSFILE vector
|
|
|
|
pc = 0xffdd
|
|
|
|
case t.vector(0x0214): // OSARGS vector
|
|
|
|
pc = 0xffda
|
|
|
|
case t.vector(0x0216): // OSBGET vector
|
|
|
|
pc = 0xffd7
|
|
|
|
case t.vector(0x0218): // OSBPUT vector
|
|
|
|
pc = 0xffd4
|
|
|
|
case t.vector(0x021A): // OSGBPB vector
|
|
|
|
pc = 0xffd1
|
|
|
|
case t.vector(0x021C): // OSFIND vector
|
|
|
|
pc = 0xffce
|
2021-07-22 17:33:34 +00:00
|
|
|
}
|
|
|
|
|
2021-07-24 12:02:50 +00:00
|
|
|
// Jump area
|
2021-07-22 17:33:34 +00:00
|
|
|
switch pc {
|
|
|
|
case 0xffb9:
|
|
|
|
s = "OSDRM(?)"
|
2021-07-23 15:52:08 +00:00
|
|
|
case 0xffbc:
|
|
|
|
s = "VDUCHR(?)"
|
2021-07-22 17:33:34 +00:00
|
|
|
case 0xffbf:
|
|
|
|
s = "OSEVEN(?)"
|
|
|
|
case 0xffc2:
|
|
|
|
s = "OSINIT(?)"
|
|
|
|
case 0xffc5:
|
|
|
|
s = "OSREAD(?)"
|
2021-07-24 12:02:50 +00:00
|
|
|
case 0xffc8:
|
|
|
|
ch := ""
|
|
|
|
if regA >= 0x20 && regA < 0x7f {
|
|
|
|
ch = string(regA)
|
|
|
|
}
|
|
|
|
s = fmt.Sprintf("OSNWRCH(A=%02x, '%v')", regA, ch)
|
|
|
|
skip = t.skipConsole
|
|
|
|
case 0xffcb:
|
|
|
|
s = fmt.Sprintf("OSNRDCH()")
|
|
|
|
skip = t.skipConsole
|
2021-07-22 17:33:34 +00:00
|
|
|
case 0xffce:
|
|
|
|
s = "OSFIND(?)"
|
|
|
|
case 0xffd1:
|
|
|
|
s = "OSGBPB(?)"
|
|
|
|
case 0xffd4:
|
|
|
|
s = "OSBPUT(?)"
|
|
|
|
case 0xffd7:
|
|
|
|
s = "OSBGET(?)"
|
|
|
|
case 0xffda:
|
|
|
|
s = "OSARGS(?)"
|
|
|
|
case 0xffdd:
|
|
|
|
s = "OSFILE(?)"
|
2021-07-24 12:02:50 +00:00
|
|
|
case 0xffe0:
|
|
|
|
s = fmt.Sprintf("OSRDCH()")
|
|
|
|
skip = t.skipConsole
|
2021-07-24 17:41:53 +00:00
|
|
|
case 0xffe3: // This fallbacks to OSWRCH
|
|
|
|
s = "OSASCI(?)"
|
|
|
|
skip = t.skipConsole
|
|
|
|
case 0xffe7: // This fallbacks to OSWRCH
|
|
|
|
s = fmt.Sprintf("OSNEWL()")
|
|
|
|
skip = t.skipConsole
|
|
|
|
case 0xffec: // This fallbacks to OSWRCH
|
|
|
|
skip = t.skipConsole
|
|
|
|
s = fmt.Sprintf("OSNECR()")
|
2021-07-24 12:02:50 +00:00
|
|
|
case 0xffee:
|
|
|
|
ch := ""
|
|
|
|
if regA >= 0x20 && regA < 0x7f {
|
|
|
|
ch = string(regA)
|
|
|
|
}
|
|
|
|
s = fmt.Sprintf("OSWRCH(A=%02x, '%v')", regA, ch)
|
|
|
|
skip = t.skipConsole
|
2021-07-22 17:33:34 +00:00
|
|
|
case 0xfff1:
|
2021-07-23 15:52:08 +00:00
|
|
|
xy := uint16(regX) + uint16(regY)<<8
|
|
|
|
switch regA {
|
|
|
|
case 0: // Read line from input
|
|
|
|
lineAddress := t.a.mmu.peekWord(xy)
|
|
|
|
maxLength := t.a.mmu.Peek(xy + 2)
|
|
|
|
s = fmt.Sprintf("OSWORD('read line';A=%02x,XY=%04x,BUF=%04x,MAX=%02x)", regA, xy, lineAddress, maxLength)
|
|
|
|
default:
|
|
|
|
s = fmt.Sprintf("OSWORD(A=%02x,XY=%04x)", regA, xy)
|
|
|
|
}
|
2021-07-22 17:33:34 +00:00
|
|
|
case 0xfff4:
|
|
|
|
s = fmt.Sprintf("OSBYTE('%s';A=%02x,X=%02x,Y=%02x)", t.osbyteNames[regA], regA, regX, regY)
|
|
|
|
case 0xfff7:
|
|
|
|
s = "OSCLI(?)"
|
|
|
|
}
|
|
|
|
|
2021-07-24 17:41:53 +00:00
|
|
|
t.call.api = pc
|
|
|
|
t.call.a = regA
|
|
|
|
t.call.x = regX
|
|
|
|
t.call.y = regY
|
|
|
|
t.call.skipLog = skip
|
|
|
|
if !skip {
|
2021-07-23 15:52:08 +00:00
|
|
|
fmt.Printf("BBC MOS call to $%04x %s ", pc, s)
|
2021-07-22 17:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-23 15:52:08 +00:00
|
|
|
|
2021-07-24 17:41:53 +00:00
|
|
|
if t.wasInKernel && !inKernel && !t.call.skipLog {
|
2021-07-23 15:52:08 +00:00
|
|
|
// Returning from the call
|
2021-07-24 17:41:53 +00:00
|
|
|
regA, regX, regY, _ := t.a.cpu.GetAXYP()
|
2021-07-23 15:52:08 +00:00
|
|
|
s := ""
|
2021-07-24 17:41:53 +00:00
|
|
|
switch t.call.api {
|
2021-07-23 15:52:08 +00:00
|
|
|
case 0xfff1: // OSWORD
|
2021-07-24 17:41:53 +00:00
|
|
|
cbAddress := uint16(t.call.x) + uint16(t.call.y)<<8
|
|
|
|
switch t.call.a {
|
2021-07-23 15:52:08 +00:00
|
|
|
case 0: // Read line from input
|
|
|
|
lineAddress := t.a.mmu.peekWord(cbAddress)
|
|
|
|
line := t.getString(lineAddress, regY)
|
|
|
|
s = fmt.Sprintf(",line='%s'", line)
|
2021-07-24 17:41:53 +00:00
|
|
|
|
|
|
|
t.a.cpu.SetTrace(true)
|
|
|
|
|
2021-07-23 15:52:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("=> (A=%02x,X=%02x,Y=%02x%s)\n", regA, regX, regY, s)
|
|
|
|
}
|
2021-07-24 17:41:53 +00:00
|
|
|
|
|
|
|
t.wasInKernel = inKernel
|
2021-07-23 15:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *traceApplecorn) getString(address uint16, length uint8) string {
|
|
|
|
s := ""
|
|
|
|
for i := uint8(0); i < length; i++ {
|
|
|
|
ch := t.a.mmu.Peek(address + uint16(i))
|
|
|
|
s = s + string(ch)
|
|
|
|
}
|
|
|
|
return s
|
2021-07-22 17:33:34 +00:00
|
|
|
}
|
2021-07-24 12:02:50 +00:00
|
|
|
|
|
|
|
func (t *traceApplecorn) vector(address uint16) uint16 {
|
|
|
|
return t.a.mmu.peekWord(address)
|
|
|
|
}
|