1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-05-31 22:41:37 +00:00

Minor word-smithing on Tips

Also, tweaked the HTML templates.
This commit is contained in:
Andy McFadden 2021-11-13 15:46:59 -08:00
parent 75a86fbbc3
commit 8d9a27ae0c
3 changed files with 18 additions and 12 deletions

View File

@ -3,12 +3,11 @@
<head>
<meta charset="utf-8"/>
<title>$ProjectName$ Disassembly</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content="SourceGen-generated disassembly of $ProjectName$"/>
<link rel="stylesheet" href="SGStyle.css"/>
<meta name="description" content="SourceGen-generated disassembly of $ProjectName$"/>
<title>$ProjectName$ Disassembly</title>
</head>
<body>

View File

@ -10,6 +10,13 @@ body {
font-size: 14px; /* 16 recommended for mobile */
padding: 0px;
margin: 20px 10px 10px 10px; /* TRBL order */
/*
* For white text on black background, uncomment this, and
* update the link text colors below.
*/
/* color: white;
background-color: black; */
}
table, th, td {
border: 1px solid black;

View File

@ -21,29 +21,29 @@
"Image" : "pseudo-op-names.png"
},
{
"Text" : "The References window shows all locations that reference the selected line. Double-click on an entry to jump directly there."
"Text" : "The References window lists all locations that reference the currently-selected line. Double-click on an entry in the list to jump to the referring location."
},
{
"Text" : "Use the Goto feature (Ctrl+G) to jump to an address, file offset, or label."
"Text" : "Use the Go To feature (Ctrl+G) to jump to an address, file offset, or label."
},
{
"Text" : "All actions that affect the project are added to the undo/redo buffer. Feel free to experiment."
"Text" : "All actions that affect the project are added to the undo/redo buffer. Use the Navigate menu to jump to the last change."
},
{
"Text" : "Notes are like full-line comments, but they don't appear in generated source code, so you can use them to make notes while you work. They also serve as color-coded bookmarks.",
"Text" : "Notes are like full-line comments, but they don't appear in generated source code, so you can use them to leave notes for yourself while you work. They also serve as color-coded bookmarks.",
"Image" : "note-sample.png"
},
{
"Text" : "You're not limited to global labels. You can create non-unique local labels, like \"@LOOP\", and define multiple labels for zero-page addresses in Local Variable Tables."
"Text" : "You're not limited to global labels. You can create non-unique local labels, like \"@LOOP\", and define multiple labels for zero-page addresses with Local Variable Tables."
},
{
"Text" : "You can copy and paste lines from the disassembly listing as text simply by selecting them and hitting Ctrl+C. This can be handy for bug reports and online forum postings. The set of columns copied can be chosen in the application settings."
"Text" : "You can copy and paste lines from the disassembly listing as text simply by selecting them and hitting Ctrl+C. This can be handy for bug reports and online forum postings. The set of columns copied can be changed in the application settings."
},
{
"Text" : "2D bitmap images and 3D wireframe meshes can be converted to images that are displayed inline. This can make it much easier to figure out what a piece of code is drawing."
"Text" : "2D bitmap images and 3D wireframe meshes can be converted to images that are displayed in the listing. This can make it much easier to figure out what a piece of code is drawing."
},
{
"Text" : "Large tables of pointers to code and data can be formatted with a single operation. Various arrangements of address bytes are supported, including low/high parts split into separate tables."
"Text" : "Large tables of pointers to code and data can be formatted with a single operation. Various arrangements of address bytes are supported, including low/high parts split across separate tables."
},
{
"Text" : "Source code can be generated for several cross-assemblers, or exported to HTML with embedded graphics. Animations can be exported as animated GIFs."