; Ukázka porovnání a jump %include "rw32.inc" section .data a dd 15.5 b dd 10.0 section .text main: fld dword [a] fld dword [b] fcomi st1 ; vyzkoušej: fcomi a fcompp ja above ; ST0 > ST1 jb below ; ST0 < ST1 je equal ; ST0 == ST1 jp problem ; error, např. NaN > 0 above: mov eax, 1 jmp end below: mov eax, 2 jmp end equal: mov eax, 3 jmp end problem: mov eax, 4 jmp end end: call WriteInt32 ret