Comparing variables in NASM Assembly
问题 Serious trouble trying to get this working .. just starting NASM assembly so sorry if this is a noob of an issue, but any help is appreciated thankyou! Trying to get the two variables to render equal so the jump after cmp works. This is frustrating me greatly, as the direct values ( if a mov eax and ebx to be "5" ) it works so is it an address problem? I'm not sure. section .data str_equal db "Equal!", 0xA len_equal equ $ - str_equal str_number_a db "5" str_number_b db "5" section .text