Chapter 8 Flashcards
Can register be subtracted
No
Can 2 base registers be added
No
Can 2 indices be added
No
What is formula of effective address
EA = base + index + offset
What is the formula of physical address
Physical address = segment * 0x10 + EA
What is segment wrap around
Removing extra bit
What is memory wrap around
Removing extra bit
What is jz
jump is zero
What is je
jump if equal
What is jne
jump if not equal
What is jc
jump if carry
What is jnc
jump if not carry
What is ja
Jump if above
What is jb
Jump if below
What is jl
jump if less
What is jg
jump if greater
What is jae
jump if above or equal
What is jbe
jump if below or equal
What is jge
jump if greater or equal
What is jle
jump if less or equal
What is jno
jump if not overflow
What is jns
jump if not sign
What is jcxz
jump if cx register is zero [cx=0]. It is special jump and not dependent on flag.
What is CMP
The basic root instruction for all comparisons is CMP standing for compare.