diff --git a/VS/CSHARP/asm-dude-vsix/Resources/example_masm2.asm b/VS/CSHARP/asm-dude-vsix/Resources/example_masm2.asm index d93ab85c..7563b467 100644 --- a/VS/CSHARP/asm-dude-vsix/Resources/example_masm2.asm +++ b/VS/CSHARP/asm-dude-vsix/Resources/example_masm2.asm @@ -1,18 +1,21 @@ - +;#region +extrn printf : proc +;#endregion procedure1 PROTO a, b global_label1: xor rcx, rcx -procedure1 PROC a, b +procedure1A PROC a, b jmp local_label1 local_label1: + call printf -procedure1 ENDP +procedure1A ENDP procedure2 PROC - call procedure1 + call procedure1A invoke procedure1 jmp local_label1 diff --git a/VS/CSHARP/asm-dude-vsix/source.extension.cs b/VS/CSHARP/asm-dude-vsix/source.extension.cs index 5ac9c8a8..ea4c8b28 100644 --- a/VS/CSHARP/asm-dude-vsix/source.extension.cs +++ b/VS/CSHARP/asm-dude-vsix/source.extension.cs @@ -11,7 +11,7 @@ static class Vsix public const string Name = "AsmDude"; public const string Description = "Syntax highlighting, code completion and code folding for assembly (.asm, .cod, .inc) source code."; public const string Language = "en-US"; - public const string Version = "1.7.3.9"; + public const string Version = "1.7.3.10"; public const string Author = "Henk-Jan Lebbink"; public const string Tags = "Assembly, Assembler, ASM, Syntax Highlighting, Code Completion, Folding, Label Analysis"; } diff --git a/VS/CSHARP/asm-dude-vsix/source.extension.vsixmanifest b/VS/CSHARP/asm-dude-vsix/source.extension.vsixmanifest index 0f16e4a7..0a8f772d 100644 --- a/VS/CSHARP/asm-dude-vsix/source.extension.vsixmanifest +++ b/VS/CSHARP/asm-dude-vsix/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + AsmDude Syntax highlighting, code completion and code folding for assembly (.asm, .cod, .inc) source code. https://github.com/HJLebbink/asm-dude