diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-06 10:27:27 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-06 10:27:27 +1200 |
| commit | 58cc6773c587b906295e7bb630c8533a118d8a89 (patch) | |
| tree | ad8ab602b768ad1b808e94ebf08693aceedb44e4 | |
| download | x86-asm-58cc6773c587b906295e7bb630c8533a118d8a89.tar.xz x86-asm-58cc6773c587b906295e7bb630c8533a118d8a89.zip | |
Initial commit
| -rw-r--r-- | main.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main.asm b/main.asm new file mode 100644 index 0000000..5fd8f3e --- /dev/null +++ b/main.asm @@ -0,0 +1,6 @@ +global _start + +_start: + mov eax, 1 + mov ebx, 42 + int 0x80 |
