From b142957ea9c3defb0d07f85ffd1ba6b4930b0f73 Mon Sep 17 00:00:00 2001 From: krolxon Date: Wed, 17 Jul 2024 18:56:37 +0530 Subject: [PATCH] add asm.json snippets --- snippets/asm.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 snippets/asm.json diff --git a/snippets/asm.json b/snippets/asm.json new file mode 100644 index 0000000..db94c48 --- /dev/null +++ b/snippets/asm.json @@ -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" + ] + } +}