20 lines
264 B
NASM
20 lines
264 B
NASM
|
|
; %include '../lib/fl.asm' ; local
|
|
%include 'lib/fl.asm' ; build.sh
|
|
|
|
SECTION .data
|
|
msg1 db 'Cats and', 0Ah, 0h
|
|
msg2 db 'Dogs', 0Ah, 0h
|
|
|
|
SECTION .text
|
|
global _start
|
|
|
|
_start:
|
|
mov eax, msg1
|
|
call sprint
|
|
|
|
mov eax, msg2
|
|
call sprint
|
|
|
|
call quit
|