Added build script and continued to lesson 10
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
|
||||
; %include '../lib/fl.asm' ; local
|
||||
%include 'lib/fl.asm' ; build.sh
|
||||
|
||||
SECTION .text
|
||||
global _start:
|
||||
|
||||
_start:
|
||||
pop ecx
|
||||
|
||||
nextArg:
|
||||
cmp ecx, 0h
|
||||
jz noMoreArgs
|
||||
pop eax
|
||||
call sprintLF
|
||||
dec ecx
|
||||
jmp nextArg
|
||||
|
||||
noMoreArgs:
|
||||
call quit
|
||||
Binary file not shown.
Reference in New Issue
Block a user