This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
nvim/snippets/asm.json

17 lines
388 B
JSON

{
"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"
]
}
}