Added build script and continued to lesson 10
This commit is contained in:
Executable
BIN
Binary file not shown.
@@ -0,0 +1,19 @@
|
||||
|
||||
; %include '../lib/fl.asm' ; local
|
||||
%include 'lib/fl.asm' ; build.sh
|
||||
|
||||
SECTION .data
|
||||
msg1 db 'Cats and', 0h
|
||||
msg2 db 'Dogs', 0h
|
||||
|
||||
SECTION .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, msg1
|
||||
call sprintLF
|
||||
|
||||
mov eax, msg2
|
||||
call sprintLF
|
||||
|
||||
call quit
|
||||
Binary file not shown.
Reference in New Issue
Block a user