A Visual Studio Code extension that provides syntax highlighting for Microsoft Macro Assembler (MASM) files. This extension enhances the readability of MASM assembly code by applying color highlighting to different syntax elements including:
- Control keywords
- Operators
- Comments
- Strings
- Registers
The extension automatically applies syntax highlighting to files with .asm
and .inc
extensions using default VS Code colors.
This extension requires Visual Studio Code version 1.93.1 or higher.
This extension does not add any VS Code settings. The syntax highlighting is automatically applied to MASM files.
If you'd like to contribute to the development of this extension, please visit our GitHub repository.
This extension was written by Cursor AI (https://cursor.com).
This extension is available under the MIT license.
To package and publish this extension to the VS Code Marketplace:
-
Install vsce (Visual Studio Code Extensions):
npm install -g vsce
-
Create a Personal Access Token (PAT):
- Go to Azure DevOps
- Create/login to your account
- Go to User Settings > Personal Access Tokens
- Create a new token with "Marketplace (Publish)" scope
-
Login to vsce:
vsce login <publisher-name>
-
Package the extension:
vsce package
-
Publish the extension:
vsce publish
For more detailed publishing instructions, visit the Publishing Extensions guide.