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.
+18
View File
@@ -0,0 +1,18 @@
%include '../lib/fl.asm'
SECTION .data
msg1 db 'Cats and', 0Ah
msg2 db 'Dogs', 0Ah
SECTION .text
global _start
_start:
mov eax, msg1
call sprint
mov eax, msg2
call sprint
call quit
BIN
View File
Binary file not shown.