Assembly Language Example
AX is the accumulator (accumulates answers from most operations)
inc ax (81h), increments AX content by 1
add ax, bx (A1h)
add ax, nnnn (A2h), add ax, [bx] (A3h)
mov ax, nnnn (D0h), mov bx, nnnn (D1h)
move ax, [bx] (D2h), mov [bx], ax (D3h)
ret DOS (34h)
Previous slide
Next slide
Back to first slide
View graphic version