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
それは基本的にそれです