Show the star command used in MOS OSCLI

This commit is contained in:
Ivan Izaguirre 2021-07-25 23:26:03 +02:00
parent 4884a8861f
commit faf97dcdc9
1 changed files with 3 additions and 1 deletions

View File

@ -156,7 +156,9 @@ func (t *traceApplecorn) inspect() {
case 0xfff4:
s = fmt.Sprintf("OSBYTE('%s';A=%02x,X=%02x,Y=%02x)", t.osbyteNames[regA], regA, regX, regY)
case 0xfff7:
s = "OSCLI(?)"
xy := uint16(regX) + uint16(regY)<<8
command := t.getTerminatedString(xy, 0x0d)
s = fmt.Sprintf("OSCLI(\"%s\")", command)
}
if s == "UNKNOWN" && t.skipConsole {