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