mirror of
https://github.com/copy/v86.git
synced 2026-01-06 15:31:59 +00:00
12 lines
130 B
NASM
12 lines
130 B
NASM
global _start
|
|
|
|
section .data
|
|
align 16
|
|
|
|
%include "header.inc"
|
|
|
|
push 0
|
|
fild dword [esp]
|
|
fxtract
|
|
|
|
%include "footer.inc"
|