-
Notifications
You must be signed in to change notification settings - Fork 15
Misc Settings
Paul Raingeard edited this page Mar 12, 2023
·
3 revisions
When the mouse is over a number or a variable a numerical value popup appears.
It can be modified in the settings.
- The format setting
{
...
"amiga-assembly.hover.numberDisplayFormat": "#`@dec@` - $`@hex@` - %`@bin@` @ascii@"
...
}
Replacement | Description |
---|---|
@dec@ | decimal |
@oct@ | octal |
@hex@ | hexadecimal |
@bin@ | binary |
@ascii@ | text |
Examples for value $1ff00:
- default: "#`@dec@` - $`@hex@` - %`@bin@` @ascii@" ->
#130816 - $1.ff00 - %1.11111111.00000000 ..ÿ.
- Only text: "@ascii@" ->
..ÿ.
- hex and ascii : "@hex@ __ @ascii@" ->
$1.ff00 __ ..ÿ.
Setting | Description |
---|---|
amiga-assembly.binDir | Directory containing the binaries |
Setting | Description |
---|---|
amiga-assembly.logLevel | Specifies the level of the logs |
Setting | Description |
---|---|
amiga-assembly.ASMOneCompatibilityEnabled | Enables the ASMOne source compatibility commands |
amiga-assembly.checkErrorOnSave | Compiles the current assembler file on save to show errors. If you want to use the formatter without the control of vasm as syntax checker set it to false |