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.
有人知道 TASM 中双循环的语法是什么吗?我记得您使用带有推送和弹出功能的 cx,但我不记得如何使用。
非常感谢你。
就是这样
mov cx, 02 ; loop twice cc: ; outer loop push cx ; store outer cx mov cx,03 ; loop thrice bb: ; inner loop ;do stuff loop bb pop cx ;get outer cx loop cc
基本上就是这样