mirror of
https://github.com/fadden/6502bench.git
synced 2025-01-15 13:32:18 +00:00
Document the auto-label style setting
This commit is contained in:
parent
ba44774810
commit
61d6cd597a
@ -201,6 +201,12 @@ declare it a string. Shorter values are prone to false-positive
|
||||
identifications, longer values miss out on short strings. You can also
|
||||
set it to "none" to disable automatic string identification.</p>
|
||||
|
||||
<p>The auto-label style setting determines the format for labels that are
|
||||
generated automatically. By default the label will be the letter 'L'
|
||||
followed by the hexadecimal address, but the label can be annotated based
|
||||
on usage. For example, addresses that are the target of branch instructions
|
||||
can be labeled with the letter 'B'.</p>
|
||||
|
||||
|
||||
<h3><a name="projprop-projsym">Project Symbols</a></h3>
|
||||
<p>You can add, edit, and delete individual symbols and constants.
|
||||
|
@ -35,6 +35,8 @@ namespace SourceGen {
|
||||
BranchOp, // branch instruction
|
||||
RefFromData, // reference in data area, e.g. ".dd2 <address>"
|
||||
MemAccessOp, // instruction that accesses memory, or refers to an address
|
||||
// TODO(someday): track 16-bit vs. 24-bit addressing, so we can show whether
|
||||
// something is a "far" reference (and maybe carry this into auto-label annotation)
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
x
Reference in New Issue
Block a user