Basic Features of MICROCOMPUTER: Julius Bancud
Basic Features of MICROCOMPUTER: Julius Bancud
Basic Features of MICROCOMPUTER: Julius Bancud
Julius Bancud
ASCII
d. SS Register
- Stack segment register permits the implementation of the stack in
memory that a program uses for temporary storage of addresses and data. The
system stores the starting address of a program’s stack segment in the SS
register.
Index Registers
INSTRUCTION AX BX CX
MOV AX, 1
MOV BX, 2
MOV BX, 3
ADD AX, BX
ADD AX, CX
Example 2
Determine the contents of AX, BX, CX and DX after
executing every sequence of the assembly language
instruction.
INSTRUCTION AX BX CX DX
MOV AL, 0F
MOV BL, 0F
MOV DL, 0A
ADD AL, BL
SUB AL, DL
MUL DL
Example 3
• Determine the contents of AX, BX, CX and DX after
executing every sequence of the assembly language
instruction.
INSTRUCTION AX BX CX DX
MOV AL, 3F
MOV BH, 7A
MOV DH, 90
ADD AL, BH
SUB BH, DH
MOV DL, 55
MUL DL
MUL DL