The NASM-compiler extension is a powerful tool for working with NASM (Netwide Assembler) assembly language in Visual Studio Code. It provides features for compiling and running NASM assembly code directly from the editor.
- Compile NASM assembly code to object files
- Link object files to create executable files
- Run the compiled executables from within the editor
- Integration with the VS Code editor, including syntax highlighting and code formatting for NASM assembly language
Click on the run button to run the assembler file
Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow.
- Launch Visual Studio Code.
- Go to the Extensions view by clicking on the square icon in the left sidebar or by pressing
Ctrl+Shift+X
. - Search for "nasm-compiler-linux" in the Extensions view search bar.
- Click on the "nasm-compiler-linux" extension by Prince Mbeah Essilfie and click the "Install" button.
- Open a NASM assembly file (with the
.asm
extension) in Visual Studio Code. - Use the provided commands or keybindings to compile and run the assembly code.
- The output of the compilation and execution will be shown in the integrated terminal.
extension.compileAssembly
: Compiles the current NASM assembly file.extension.runAssembly
/f5
: Compiles and runs the current NASM assembly file.
- Install Asm Code Lens for syntax highlighting: provides a new language mode "Assembler file"
- NASM (Netwide Assembler) must be installed on your system. You can download and install NASM from the official website: NASM Downloads
Include if your extension adds any VS Code settings through the contributes.configuration
extension point.
This extension contributes the following settings:
nasm-compiler-linux.enable
: Enable/disable this extension.extension.runAssembly
: f5 - run assembly
Windows support not available
: working on it
Contributions to the NASM extension are welcome! If you find any issues or have suggestions for improvements, please open an issue on the GitHub repository.
This extension is released under the MIT License.
For any questions or support related to the NASM extension, you can contact the developer at:
- Email: [email protected]
- GitHub: Kratosgado
- LinkedIn: Prince Mbeah Essilfie
- Twitter: MbeahEssilfie
Users appreciate release notes as you update your extension.
Initial release of the NASM Extension.
- Support for NASM assembly language in Visual Studio Code.
- Commands for compiling and running NASM assembly files.
- Integration with the VS Code editor.
- added support nasm language mode
- working file directory error fix
Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
- Split the editor (
Cmd+\
on macOS orCtrl+\
on Windows and Linux). - Toggle preview (
Shift+Cmd+V
on macOS orShift+Ctrl+V
on Windows and Linux). - Press
Ctrl+Space
(Windows, Linux, macOS) to see a list of Markdown snippets.
Enjoy!