Misc Settings - prb28/vscode-amiga-assembly GitHub Wiki
Change the numerical popup content
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 __ ..ÿ.
The binaries directory
| Setting | Description |
|---|---|
| amiga-assembly.binDir | Directory containing the binaries |
Changing the logs
| Setting | Description |
|---|---|
| amiga-assembly.logLevel | Specifies the level of the logs |
Build misc settings
| 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 |