Continued to lesson 15

This commit is contained in:
2025-06-22 23:14:35 +03:00
parent 6a824fbbda
commit 8d471b77f7
16 changed files with 137 additions and 0 deletions
Executable
BIN
View File
Binary file not shown.
+18
View File
@@ -0,0 +1,18 @@
; %include '../lib/fl.asm' ; local
%include 'lib/fl.asm' ; build.sh
SECTION .text
global _start
_start:
mov ecx, 0
nextNumber:
inc ecx
mov eax, ecx
call iprintLF
cmp ecx, 10
jne nextNumber
call quit
BIN
View File
Binary file not shown.