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.
2 つの数値の最大公約数を計算する while ループを書きたいと思います。
これは疑似コードです
Euclid(a, b) while (b != 0) { r = a mod b a = b b = r } return a
DIV は単一のオペランドのみを受け取ります。edx:eax をオペランドで除算し、剰余を edx に格納します。