%include "rw32-2018.inc" section .text global main main: mov ebp, esp; for correct debugging ; Ukol 1: Zmente aritmetickou operaci tak, aby AL=-120, CF=0, OF=1 mov al,0 add al,0 call WriteFlags call WriteInt8 call WriteNewLine ; Ukol 2: Zkopirujte kod a upravte tak, aby SF=1, CF=1 ; Ukol 3: ZF=1, PF=0, DF=1 ; direction flag musi byt v nekterych implementacich 0 pred navratem z funkce main cld xor eax, eax ret