From 0c60642cc9e988f2dbf9a18b37aa53a9bb0fcf2b Mon Sep 17 00:00:00 2001 From: german Date: Wed, 25 Feb 2026 17:58:33 +0400 Subject: [PATCH] Documentation --- .vscode/launch.json | 7 +++++++ README.md | 0 example.asm | 4 ++++ 3 files changed, 11 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 README.md diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..655f330 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,7 @@ +{ + // Используйте IntelliSense, чтобы узнать о возможных атрибутах. + // Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов. + // Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/example.asm b/example.asm index e69de29..7f06c72 100644 --- a/example.asm +++ b/example.asm @@ -0,0 +1,4 @@ +main: + push "Hello, world!\n" + push byte 0x00 + syscall \ No newline at end of file