There was an error while loading. Please reload this page.
Mos6502AssemblerDebugInfo.ToString()
1 parent ec8d6f8 commit 6a2b704Copy full SHA for 6a2b704
1 file changed
src/Asm6502/Mos6502AssemblerDebugLineInfo.cs
@@ -24,8 +24,10 @@ public override string ToString()
24
Mos6502AssemblerDebugInfoKind.CodeSectionEnd => $"${Address:x4} CODE SECTION END",
25
Mos6502AssemblerDebugInfoKind.DataSectionBegin => $"${Address:x4} DATA SECTION BEGIN: {Name}",
26
Mos6502AssemblerDebugInfoKind.DataSectionEnd => $"${Address:x4} DATA SECTION END",
27
+ Mos6502AssemblerDebugInfoKind.FunctionBegin => $"${Address:x4} FUNCTION BEGIN: {Name}:{LineNumber}",
28
+ Mos6502AssemblerDebugInfoKind.FunctionEnd => $"${Address:x4} FUNCTION END",
29
Mos6502AssemblerDebugInfoKind.End => $"${Address:x4} END",
- _ => $"{Address:X4} UNKNOWN KIND"
30
+ _ => $"{Address:x4} UNKNOWN KIND"
31
};
32
}
33
0 commit comments