asm-code-lens
asm-code-lens copied to clipboard
A vscode language server that enables code lens, references, hover information and symbol renaming in asssembler files.
I think it's not right icon in donation info, my eyes sensitive with :x:. It will better if the icon is :information_source: 
This edit allows breakpoints in assembly files, which allows for much better debug experience. I've tried this with NASM and the vscode C/C++ debugger and it worked perfectly.
In vscode 1.58.2 the hex calculator window does not move if a panel above (e.g. callstack) is expanded above: 
Example (x86, GNU Assembler, Intel syntax): ```asm mov byte ptr [ecx + 1*eax], '-' ``` Currently, `byte` and `ptr` are highlighted in different colors.
Using x86 ASM with GNU Assembler and Intel syntax. `ah`, `bh` and `ch` are highlighted in some light green color, `dh` is purple, and `sp` is a darker cyan. Other...
The current implementation searches all *.asm unstructured, i.e. it does not look for dependencies like 'include'. This also makes the implementation quite messy. It would b emore structured to define...
I should keep all CodeLenses alive in arrays to determine which require an update. vscode 1.27 provides a new search API: workspace.findTextInFiles See thread here: https://vscode-dev-community.slack.com/messages/C74CB59NE/convo/C74CB59NE-1535575944.000100/ I.e.: I'm trying to...
I have some ancient code written by me, which was assembled with M80. Apparently I found out that M80 supports $-signs in labels as I have code looking like: ----...
just like this,You must enter mov before to be prompted for mov
Version: 3.0  Is shown when clicking on "4 references"  Some time later it works: ![Bildschirmfoto 2022-11-23 um 18...