Assembly Exam 1

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

1/8

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.

9 Terms

1
New cards

If-Then

IF

conditional branch ENDIF

THEN {block}

ENDIF

2
New cards

If-Then-Else

IF

conditional branch ELSE

THEN {then block}

BRA ENDIF

ELSE {else block}

ENDIF

3
New cards

While

WHILE

conditional branch ENDWHILE

{block}

BRA WHILE

ENDWHILE

4
New cards

Do-Until

DO {block}

UNTIL

conditional branch DO

ENDDO

5
New cards

Extended Addressing Mode

16-bit address given in instruction

ex: ADDA $C210 —→ EA = $C210

6
New cards

Direct Addressing Mode

LSB given in instruction

ex: ADDA $C2 —→ EA = $00C2

7
New cards

Inherit Addressing Mode

No EA to be generated, data is either in processor or not needed

ex: ABA ——→ (A) + (B) → (A)

8
New cards

Immediate Addressing Mode

No EA to be generated, data in instruction

ADDA #$C2 ——→ (A) + $C2 → (A)

9
New cards

Indexed Addressing Mode

X & Y registers as base, provides 1-byte offset

EA = (X or Y) + offset