section .data value1 db 25 value2 db 25 section .text global _start _start: mov al, [value1] mov bl, [value2] cmp al, bl jae above_or_equal not_above_or_equal: ; your code here fot he scneario when value1 is not above or equal to value2 jmp done above_or_equal: ;your code hre for the scneario when value1 is above or equal to value2 done: ;exit code hre