.pos 0 mrmovl a,%eax mrmovl b,%ebx subl %eax,%ebx # on calcule b-a (dans ce sens) jg else # on teste la condition du else : b-a > 0 ? then: irmovl 1,%ecx rmmovl %ecx,c # c = 1 jmp endif else: irmovl 2,%ecx rmmovl %ecx,c # c = 2 endif: halt .pos 0x100 a: .long 2 b: .long 3 c: .long 0