Sie sind hier: Sprachen Assembler Multiplaktion und Division  
 ASSEMBLER
Addition und Subtraktion
Multiplaktion und Division
Char-Ausgabe eines Zahl im AX
Interupt 25h
Info zu CPUID
Lösung der Werte für das zweite Labor
 SPRACHEN
Assembler
C#
C++
Java
Python
Kotlin
gcc
Java Native Interface
openMP
PHP
Resim
STL
Unix
XML und XLST

MULTIPLAKTION UND DIVISION

Beispiele für Multiplikation und Division

mov ax,57
mov bl, 5
div bl ; ah=2 al=11

mov dx,0
mov ax,4101 ; ax=1005h
mov bx, 11
div bx ; ax=0174h dx=009h

mov ax,337 ; 0151h
mov bl, 12
mul bl ; ax=03CCh
mov dx,0
mov ax,4101 ; ax=1005h
mov bx, 11
mul bx ; ax=B037h dx=0h



mov dx,0
mov ax,4101 ; ax=1005h
mov bx, 0F1h
mul bx ; ax=14B5h dx=000fh