Finished lesson 36

All done
This commit is contained in:
2025-06-24 21:14:37 +03:00
parent 5a0c4a49c7
commit 42d2533099
24 changed files with 501 additions and 0 deletions
Executable
BIN
View File
Binary file not shown.
+27
View File
@@ -0,0 +1,27 @@
; %include '../lib/fl.asm' ; local
%include 'lib/fl.asm' ; build.sh
SECTION .text
global _start
_start:
xor eax, eax
xor ebx, ebx
xor edi, edi
xor esi, esi
_socket:
push byte 6
push byte 1
push byte 2
mov ecx, esp
mov ebx, 1
mov eax, 102
int 80h
call iprintLF
_exit:
call quit
BIN
View File
Binary file not shown.