Create learn asm repo

Repository for learning assembly language
This commit is contained in:
2025-05-24 11:05:24 +03:00
commit 9165f49e62
20 changed files with 188 additions and 0 deletions
Executable
BIN
View File
Binary file not shown.
+16
View File
@@ -0,0 +1,16 @@
; Lesson 1
; nasm -f elf l1.asm
; ld -m elf_i386 l1.o -o l1
SECTION .data
msg db 'Hello, World!', 0Ah
SECTION .text
global _start
_start:
mov edx, 13
mov ecx, msg
mov ebx, 1
mov eax, 4
int 80h
BIN
View File
Binary file not shown.