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.
我只想问在满足条件后如何终止或关闭程序。我即将完成这个案例研究..感谢您的回答:]
喜欢:
cmp byte ptr [sel3_1+2], 'a' je stop stop: *code here*
或者在这种情况下编码停止的东西
使用服务 4CH 调用 INT 21h - 使用返回码退出,将返回码放入 AL。
所以,
MOV AH, 4CH MOV AL, 01 ;your return code. INT 21H
或者要在没有返回码的情况下退出,请使用 service 0...
MOV AH, 0 INT 21H