Sprachen
  Vorlesungen     Download     DBS     Oberflächen     File Formats     Impressum     Datenschutz  
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
C#
C++
Java
Python
Kotlin
gcc
Java Native Interface
openMP
PHP
Resim
STL
Unix
XML und XLST
Allgemein:
Startseite
Vorlesungen
Labore
Sinnvolle Programme
Lineare Regression
GUI-Entwurfsarbeit
Single-Format
Design Pattern-Termine
Observer1
Bsp2
Json-Array
Json-Dialogelemente
Webtechnologien

Addition und Subtraktion

Beispiele für Addition und Subtraktion

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