1
0
mirror of https://github.com/fadden/6502bench.git synced 2025-09-27 03:16:55 +00:00

Update Apple II data files

Added symbols for the ProDOS 8 global page, as well as some notes
about screen holes.

Also, if a platform symbol has a tag, show it in the Info panel.
This commit is contained in:
Andy McFadden
2019-10-03 14:11:16 -07:00
parent b1d11480f3
commit 3172ea0b70
5 changed files with 132 additions and 10 deletions

View File

@@ -3315,6 +3315,9 @@ namespace SourceGen {
} else if (defSym.SymbolSource == Symbol.Source.Platform) {
sourceStr = "platform symbol file (#" + defSym.LoadOrdinal +
":" + defSym.FileIdentifier + ")";
if (!string.IsNullOrEmpty(defSym.Tag)) {
sourceStr += ", tag=" + defSym.Tag;
}
} else {
sourceStr = "???";
}