Assembly Exam 2 Terms & Definitions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/58

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

59 Terms

1
New cards

reserve storage space for variables

RESB (reserve bytes)

in .bss

2
New cards

define storage space for constants

DB (define bytes)

in .data

3
New cards

DB

define byte

1 byte

4
New cards

DW

define word

2 bytes

5
New cards

DD

define doubleWord

4 bytes

6
New cards

DQ

define quadWord

8 bytes

7
New cards

DT

define ten bytes

10 bytes

8
New cards

TIMES

used to define multiple of the same variable (arrays)

: times 9 db ''

9
New cards

RESB

reserve byte

1 byte

10
New cards

RESW

reserve word

2 bytes

11
New cards

RESD

reserve doubleword

4 bytes

12
New cards

RESQ

reserve quadword

8 bytes

13
New cards

REST

reserve ten bytes

10 bytes

14
New cards

EQU

makes macros (text substitution)

can have expressions (AREA equ length * width)

15
New cards

define directive

%define

basically a function, can pass it parameters

%define ()

EX:

%define syscall(id) mov eax, id

makes a "function" called syscall which moves the passed parameter into eax

16
New cards

INC

increment, increments number by one and doesnt flip overflow flag

17
New cards

DEC

decrements number by 1 and doesnt flip overflow flag

18
New cards

ADD

adds 2 values and stores them in the first operand

19
New cards

SUB

subtracts 2 values and stores them in the first operand

20
New cards

MUL

unsigned multiplication

21
New cards

IMUL

signed multiplication

22
New cards

multiplying 2 bytes

AL * 8 bit source = AH AL

MUL <8 bit source> multiplies the source by AL and stores the result in AH(high order bits) and AL (low order bits)

23
New cards

multiplying 2 words

AX * 16 bit source = DX AX

MUL <16 bit source> multiplies the source by AX and stores the result in DX(high order bits) and AX(low order bits)

24
New cards

multiplying 2 doublewords

EAX * 32 bit source = EDX EAX

MUL <32 bit source> multiplies the source by EAX and stores the result in EDX(high order bits) and EAX(low order bits)

25
New cards

DIV

unsigned division

26
New cards

IDIV

signed division

27
New cards

dividing 2 bytes

AX(16 bit dividend) / 8 bit divider = Q: AL R:AH

DIV <8 bit divider> divides AX by the source and stores the result in AL and the remainder in AH

28
New cards

dividing word

DX(high) AX(low)(32 bit dividend) / 16 bit divider = Q: AX R:DX

DIV <16 bit divider> divides DX and AX by the source and stores the result in AX and the remainder in DX

29
New cards

dividing double word

EDX(high) EAX(low)(64 bit dividend) / 32 bit divider = Q: EAX R:EDX

DIV <32 bit divider> divides DX and AX by the source and stores the result in EAX and the remainder in EDX

30
New cards

AND

AND ,

if both bits are 1, result is 1

operand 1 can be in register or in memory

operand 2 can be register, memory, or immediate

cannot do memory to memory

31
New cards

use AND to clear some bits but not others

you can take whatever bits you want to flip and AND it with an immediate of that ammount

32
New cards

use AND to check if number is odd or even

AND register with one, will flip zero flag if even

33
New cards

OR

returns 1 if either or both bits are 1

34
New cards

set certain bit with OR

you can set certain bits in a register by ORing them with a value that has a 1 in the slot you want to set to 1

EX 0FH will set the last 4 bits to 1

35
New cards

XOR

will set bits to 1 if both bits are different

36
New cards

set register to zero with XOR

XOR a register with itsself to set it to zero

EX: XOR EAX, EAX

37
New cards

TEST

same as AND but doesnt change the first value

38
New cards

use TEST to determine if even or odd

same as and

TEST , 1

JZ (even)

39
New cards

NOT

reverses bits in operand

NOT

40
New cards

Unconditional jump

Jumps no matter what

JMP

41
New cards

Conditional jump

jumps when something is true. uses EFLAGS register

J

ex: JZ means jump zero (jump if the zero flag is true)

42
New cards

CMP

compare

subtracts second operand from first but only changes EFLAGS

EX:

CMP EAX, EBX

JE is_equal if EAX = EBX, jump

43
New cards

use unconditional jump to form loop

you can have an unconditional jump to form a loop then use another jump to leave the loop when a condition is met

44
New cards

JE

jump equal, checks zero flag

45
New cards

JZ

jump zero, checks zero flag

46
New cards

JG

jump greater

checks overflow flag, sign flag, zero flag

47
New cards

JNLE

jump not less than or equal to

checks overflow flag, sign flag, zero flag

48
New cards

JGE

jump greater than or equal to

checks overflow flag, sign flag

49
New cards

JNL

jump not less

checks overflow flag, sign flag

50
New cards

JL

jump less

checks overflow flag, sign flag

51
New cards

JLE

jump less than or equal to

checks overflow flag, sign flag, zero flag

52
New cards

JA

jump above

checks carry flag, zero flag

53
New cards

JNBE

jump not below/equal

checks carry flag, zero flag

54
New cards

JB

jump below

checks carry flag

55
New cards

JNAE

jump not above/equal to

checks carry flag

56
New cards

JBE

jump below/equal

checks auxiliary carry flag, carry flag

57
New cards

JNA

jump not above

checks auxiliary carry flag, carry flag

58
New cards

LOOP instruction

LOOP

assumes ECX contains loop count

59
New cards

FOR loop tips

to make a for loop in assembly, change it to a while loop, then implement it