1
0
mirror of https://github.com/fadden/6502bench.git synced 2026-04-25 05:22:03 +00:00

Implement HTML export

Pretty straightforward formatted-text dump, with links for internal
labels, and a table of exported symbols at the end.
This commit is contained in:
Andy McFadden
2019-09-13 17:09:06 -07:00
parent 1631cd77f6
commit d3ff1f6eff
8 changed files with 359 additions and 10 deletions
+13
View File
@@ -0,0 +1,13 @@
/*
* 6502bench SourceGen disassembly output style.
*/
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px; /* 16 recommended for mobile */
padding: 0px;
margin: 20px 10px 10px 10px; /* TRBL order */
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}