[rom] Tweak output for packetMarkDataStart

Changed the variable names in the Asm() output for the
packetMarkDataStart type:

    ArgA -> Bank
    ArgB -> Addr
This commit is contained in:
Zorchenhimer 2025-10-26 19:01:03 -04:00
parent 31b297b2e0
commit b032b50b6a
Signed by: Zorchenhimer
GPG Key ID: 70A1AB767AAB9C20
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ func (p *packetMarkDataStart) dataType() string {
}
func (p *packetMarkDataStart) Asm() string {
return fmt.Sprintf("mark_datatype_start Type:%s ArgA:$%02X ArgB:$%02X ; Checksum:%02X",
return fmt.Sprintf("mark_datatype_start Type:%s Bank:$%02X Addr:$%02X00 ; Checksum:%02X",
p.dataType(), p.ArgA, p.ArgB, p.checksum)
}