; UKÁZKA ; Do x ulož hodnotu 12 a vypočítej a+b+x %include "rw32.inc" section .data a dw 60 b dd 70 section .bss x resd 1 section .text main: mov [x], 12 mov eax, 0 mov ax, [a] add eax, [b] mov [x], eax call WriteUInt32 call WriteNewLine ret