;JGE - Jump if greater or equal --- SF and OF section .data value1 db 30 value2 db 30 section .text global _start _start: mov al, byte [value1] mov bl, byte [value2] cmp al, bl jge greater_or_equal not_greater_or_equal: ;your code here for not greater or equal case jmp done greater_or_equal: ;your code here for greater or equal case done: ;exit code here mov rax, 60 xor rdi, rdi syscall