SupportIf you like ASM-Code-Lens please consider supporting it. ASM Code Lens'ASM Code Lens' is a language server extension for Visual Studio Code for assembler files. It provides support for:
Please refer to the "Feature Contributions" tab to see how to enable/disable certain features IncompatibilitiesIf you are using "ASM Code Lens" with other extensions that define assembler language ids (such as Z80 Macro-Assembler or other syntax highlighting extensions for assembly code) you might experience problems. E.g. code lenses do not work. The underlying problem is that vscode can associate a file only to one language id. I.e. the language id of your assembler files is associated to something else than "Assembler file" ASM Code Lens will not find the file anymore. When selecting an assembly file the file association is shown in the right side of the status bar, it should show something like: Otherwise click on it and select the right association. InstallationInstall through Visual Studio Code Marketplace. The extension is called "ASM Code Lens". It supports assembler source files and list files by defining the language identifiers "Assembler file" ('asm-collection') and "Assembler list file" ('asm-list-file'). Your file has to be associated to one of those languages. By default "Assembler file" contains the following suffixes:
The "Assembler list file" defaults to:
But you can manually add any file or file suffixes to the language ids via vscode (language mode). Hexadecimal CalculatorA view in the sidebar of the explorer and the sidebar in debug mode. It adds a decimal and hexadecimal calculator to vscode. It always shows 2 columns: decimal and hexadecimal. If you enter a number in one column it is automatically converted to the other type. This way it is easily possible to mix calculations between decimal and hexadecimal. The calculator allows the basic integer calculations:
Outline ViewAn outline view of the assembly can be shown like this: "ASM Code Lens" uses some heuristics to tell what labels are data, const or code. So be aware that it's decision might be wrong sometimes. Note: The outline view also supports sjasmplus MODULE information. Find Dead CodeWith a right click on a text editor (an asm file) and by selecting 'Find Labels with no Reference' you get a list of labels (in the OUTPUT pane) that are not referenced anywhere in all files. This can be useful to find any dead code because code or data that is not referenced is probably not used or the label is superfluous. Problem MatcherFor the sjasmplus assembler there is a problem matcher included to ease the navigation to compile errors. You can use it simply by adding the following line to your tasks.json:
Hovers in Debug Modevscode turns the normal hovers off if in debug mode. To make them visible press the "ALT" key while hovering. Syntax highlighting in Markdown code blocksAssembler syntax highlighting can also be used within Markdown documents.
Just add Here is an example:
Which results in the following highlighting: Known Issues
License and AcknowledgementsASM-Code-Lens is licensed under the MIT license. This extension uses code from the vscode-whats-new project from Alessandro Fragnani aka alefragni, MIT License. I also included the grammar for syntax highlighting from Martin Bórik's vscode extension z80-macroasm-vscode because I got problems when running both extensions at the same time and I could not turn off features selectively. I.e. I copied the files language.configuration.json and z80-macroasm.tmLanguage.json. The z80-macroasm-vscode extension itself was forked from Imanol Barriuso's vscode extension z80asm-vscode. MIT license, copyright (c) 2016 Imanol Barriuso (Imanolea). Many thanks to the authors. I also would like to thank these contributors:
|