21 lines
235 B
NASM
21 lines
235 B
NASM
|
|
; %include '../lib/fl.asm' ; local
|
|
%include 'lib/fl.asm' ; build.sh
|
|
|
|
SECTION .data
|
|
msg db 'Seconds since Jan 01 1970: ', 0h
|
|
|
|
SECTION .text
|
|
global _start
|
|
|
|
_start:
|
|
mov eax, msg
|
|
call sprint
|
|
|
|
mov eax, 13
|
|
int 80h
|
|
|
|
call iprintLF
|
|
call quit
|
|
|