16 lines
164 B
NASM
16 lines
164 B
NASM
|
|
; %include '../lib/fl.asm' ; local
|
|
%include 'lib/fl.asm' ; build.sh
|
|
|
|
SECTION .text
|
|
global _start
|
|
|
|
_start:
|
|
mov eax, 90
|
|
mov ebx, 9
|
|
mul ebx
|
|
call iprintLF
|
|
|
|
call quit
|
|
|