Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个类似于 Java、C 等汇编语言中的 if 语句的命令,我正在使用 NASM。
如果输入数字小于零、大于一百或介于零和一百之间,则希望它分支程序。而且我不知道如何实现这种核对。
谢谢Corbin,我用这个解决了
;check if n is between 0 and 100 cmp eax, [e2] jg end_if1 jmp next next: cmp eax,[e1] jl end_if2 jmp math
您的链接对我帮助很大:) 先生,祝您有愉快的一天!