Chapter 6 - (๐˜ฃ๐˜บ ๐˜‘๐˜ฆ๐˜ง๐˜งโ€‹) Flashcards

1
Q

o Allows programmer to skip sections of program

A
  • Jump (JMP)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

o Allows programmer to make decisions based upon numerical tests

A
  • Conditional jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

3 Unconditional Jumps

A

Short
Near
Far

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

๏‚ง 2-byte instruction that allows jumps within +127 and -128 bytes from the address

A

o Short jump

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

๏‚ง 3-byte instruction that allows jumps within +32k bytes from instruction

A

o Near jump

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

๏‚ง 5-byte instruction that allows jumps to any memory location within the real memory system

A

o Far jump

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

o Relative jumps

A
  • Short Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

o Moved with related software to any location in code segment without a change

A
  • Short Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

๏‚ง Follows the opcode

A

o Distance/Displacement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

o Similar to short jump, only farther

A
  • Near Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

o Also relocatable

A
  • Near Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

o +- 2G in 80386

A
  • Near Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

๏‚ง Denotes relocatable jump address

A

o Letter R

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

o Obtains a new segment and offset address to accomplish the jump

A
  • Far Jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

๏‚ง Obtain a far jump from label

A

o Far label

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

๏‚ง Appear in programs that contain more than one program file

A

o External labels

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

o Sets up instruction as indirect jump
o Address of jump is in register

A
  • Jumps with Register Operands
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

o Double indirect jump

A

Indirect Jumps Using an Index

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

o Always short jumps

A
  • Conditional jump
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Conditional jump tests the following flag bits

A

๏‚ง Sign
๏‚ง Zero
๏‚ง Carry
๏‚ง Parity
๏‚ง Overflow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

o Conditions tested by conditional jumps

A
  • Conditional Set Instructions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

o Set byte to 01H or clear a byte to 00H

A
  • Conditional Set Instructions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q
  • Combination of decrement CX and JNZ conditional jump
A

LOOP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Two Conditional LOOPs

A

LOOPE and LOOPNE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

LOOPE

A

๏‚ง Loop while equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

๏‚ง Jumps if cx!=0 while an equal condition exists
๏‚ง Exits if condition is not equal or cx = 0

A

o LOOPE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

o LOOPNE

A

๏‚ง Loop while not equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

๏‚ง Jumps if cx!=0 while a not-equal condition exists
๏‚ง Exits if condition is equal or if cx = 0

A

o LOOPNE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

o Do not function when using Visual C++ inline assembler

A
  • Dot commands
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Two Dot commands

A

o .REPEAT-.UNTIL and .WHILE-.ENDW

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

o Causes all assembler generated statements to be listed

A
  • .LISTALL
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

o Generates label @startup

A
  • .STARTUP
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

o Used with a condition to begin the loop

A
  • .WHILE
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

o Ends the loop

A
  • .ENDW
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q
  • Series of instructions is repeated until some condition occurs
A

REPEAT-UNTIL Loops

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

o Defines start of loop

A
  • .REPEAT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

o End of loop which contains condition

A
  • .UNTIL
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q
  • Subroutine, method, or function
39
Q

three terms associated with PROCEDURE

A
  • Subroutine, method, or function
40
Q
  • Group of instruction that performs one task
41
Q
  • Reusable section of the software
42
Q

o Links to the procedure

43
Q

o Pushes the address of the instruction following the CALL(return address) on the stack

44
Q

o Returns from the procedure

45
Q

o Removes an address from the stack so the program returns to the instruction following the call

46
Q

o Procedures used by all software

47
Q

o Far procedures

48
Q

o Procedures used by a given task

49
Q

o Near procedures

50
Q
  • Transfers flow of program to the procedure
51
Q

o 3 bytes long

52
Q

o First byte โ€“ opcode
o Second and third โ€“ displacement
๏‚ง +- 32k

53
Q

o Like a far jump

54
Q

o Call a procedure stored in any memory location in the system

55
Q

o 5-byte instruction
o Opcode โ€“ IP (2 & 3) and CS (4 & 5)

56
Q
  • often keyed with a number that addresses a CALL address in a lookup table
A

CALLs with Indirect Memory Addresses

57
Q
  • return instruction
58
Q

o removes a 16-bit number from the stack and places it into IP
o removes a 32-bit number and places it into IP and CS

59
Q

o externally derived from hardware signal

A
  • hardware-generated CALL
60
Q

o execution of instruction

A
  • software-generated CALL
61
Q

two types of INTERRUPT

A

hardware-generated CALL
software-generated CALL

62
Q

also called โ€œexceptionโ€

63
Q
  • 4-byte number stored in the first 1024 bytes of memory when the microprocessor operates in the real mode
A

Interrupt Vectors

64
Q

o 256 different software interrupt instructions

65
Q

o Address of interrupt vector is determined by multiplying the interrupt number by __

66
Q

๏‚ง Used to call system procedures because the address of the system function need not be known

A

o Software interrupts

67
Q

๏‚ง Used only with software or hardware interrupt service procedures
๏‚ง Pop stack data back into the IP
๏‚ง Pop stack data back into CS
๏‚ง Pop stack data back into the flag register

A

o Interrupt Return instruction

68
Q

๏‚ง 80386 through Core2
๏‚ง Return from an interrupt service that is called in the protected mode

69
Q

๏‚ง Pops 32-bit pointer from the stack

70
Q

Interrupt operated in Real Mode

A

o Interrupt Return instruction (IRET)

71
Q

Interrupt operated in Protected Mode

72
Q

o Function as breakpoint
o 1-byte instruction

73
Q

o Interrupt an overflow

74
Q

o Software that adds or subtracts signed binary numbers

75
Q

o Ends with IRET instead of RET, contents of flag register are saved on the stack

A
  • Interrupt Service Procedure
76
Q

๏‚ง Set interrupt flag
๏‚ง Places 1 into I flag bit

77
Q

๏‚ง Clear interrupt flag
๏‚ง Places 0 into I flag bit

78
Q

๏‚ง Retrieves 8-byte return address
๏‚ง Retrieves the 32-bit EFLAG

79
Q

o STC

A

๏‚ง Set carry

80
Q

o CLC

A

๏‚ง Clear carry

81
Q

o CMC

A

๏‚ง Complement carry

82
Q

o Monitors the hardware BUSY pin on the 80286 and 80386 and the TEST pin on the 8086/8088

83
Q
  • HLT
84
Q

o Stops the execution of software

85
Q

o THREE WAYS TO EXIT A HALT

A

๏‚ง By interrupt
๏‚ง By hardware reset
๏‚ง During a DMA operation

86
Q
  • NOP
A

o No operation

87
Q

Appends an instruction and causes the LOCK pin to become logic 0

A
  • LOCK Prefix
88
Q
  • ESC
89
Q

o Passes instructions to the floating-point coprocessor from the microprocessor

90
Q

o Comparison instruction that may cause an interrupt

91
Q

o Compares the contents of any 16-bit or 32-bit register against the contents of two words of memory

92
Q

๏‚ง Creates a stack frame by pushing BP onto the stack and then loading BP with the uppermost address of the stack frame

93
Q

๏‚ง Reverses the process by reloading both SP and BP with their prior values