%include "rw32.inc" section .data a dd 1.1 b dd 3.33 c dd 5.555 section .text main: FINIT ; Pomocí FPU vypočítejte: y = (a+b)*(b+c) ; Výsledek v st0 call WriteDouble ret