Added build script and continued to lesson 10

This commit is contained in:
2025-06-22 21:03:18 +03:00
parent 9165f49e62
commit 6a824fbbda
18 changed files with 153 additions and 2 deletions
Executable
BIN
View File
Binary file not shown.
+31
View File
@@ -0,0 +1,31 @@
; %include '../lib/fl.asm' ; local
%include 'lib/fl.asm' ; build.sh
SECTION .data
msg1 db 'Gii du namma lea?: ', 0h
msg2 db 'Bures, ', 0h
SECTION .bss
sinput: resb 255
SECTION .text
global _start
_start:
mov eax, msg1
call sprint
mov edx, 255
mov ecx, sinput
mov ebx, 0h
mov eax, 3
int 80h
mov eax, msg2
call sprint
mov eax, sinput
call sprint
call quit
BIN
View File
Binary file not shown.