add asm.json snippets

This commit is contained in:
krolxon 2024-07-17 18:56:37 +05:30
parent 3684037173
commit b142957ea9
1 changed files with 16 additions and 0 deletions

16
snippets/asm.json Normal file
View File

@ -0,0 +1,16 @@
{
"boilerplate": {
"prefix": "boilerplate",
"body": [
"\n.model small",
"\n.data",
"\n.code",
"\tmov ax, @data",
"\tmov ds, ax",
"\n\n\tmov ah, 4ch",
"\tint 21h",
"\tends",
"end"
]
}
}