Assembly language program

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

1/49

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.

50 Terms

1
New cards

what is machine code

the programming language that the CPU uses

2
New cards

what are instructiosn in ALP

a single operation performed by a CPU

3
New cards

what is assembly language

a low-level chip/machine specific programming languages that uses mnemonics

4
New cards

what is opcode short for

operation code

5
New cards

what is opcode

the part fo machine code instruction that identifies the action the CPU will perform

6
New cards

what is operand

the part fo a machien code instruction that identifies the data to be used by the CPU

7
New cards

what is source code

a computer program before tranlation into machine code

8
New cards

what is an assembler

a computer program that translates programming code written in assembly language into machine code

9
New cards

what are instruction sets

the complete set of machine code instructions used by a CPU

10
New cards

what is object code

a computer program after translation into machine code

11
New cards

what are addressing modes

different methods of using the operand part of a machine code instruction as memory address

12
New cards

what is absolute addressing

mode fo addressign in which the contenst of the memory location in the operand are used

13
New cards

what is direct addressing

mode of addressign in which the content of the memory location in the operand are used

14
New cards

what is indirect addressing

mode of addressign in which the contents of the contents of the memory location in the operand are used

15
New cards

what is indexed addressing

mode of addressing in which the content of the memory location found by addign the contents of the index register to the address of the memory location in the operand are used

16
New cards

what is immediate addressing

mode of addressing in which the value of the operand only is used

17
New cards

what is relative addressing

mode of addressing in which the memory address used is the current memory address added to the operand

18
New cards

what is symbolic addressing

mode of addressing used in assembly language programming, where a label is used instead of a value

19
New cards

Opcode: LDM Operand: #n | what does it do

load the numebr in ACC

20
New cards

Opcode: LDD Operand: <address>| what does it do

load the content of the specific address into ACC

21
New cards

Opcode: LDI Operand: <address> | what does it do

the address to be used is the contents of the specified address. Load the contents of the contents of the given address into ACC

22
New cards

Opcode: LDX Operand: <address>| what does it do

the address to be used is the specifed address plus the contents fo the index register. Load the contents of the calculated address into ACC

23
New cards

Opcode: LDR Operand: #n | what does it do

Load the number n into IX

24
New cards

Opcode: LDR Operand: ACC| what does it do

load the number in the accumulator into IX

25
New cards

Opcode: MOV Operand: <register>| what does it do

move the contents of the accumulator to the register

26
New cards

Opcode: STO Operand: <address>| what does it do

store the contents of ACC into the specifieid address

27
New cards

Opcode: END Operand: … | what does it do

return control to the operating system

28
New cards

what is ACC

single accumulator

29
New cards

what is IX

index register

30
New cards

what does B represent

binary number

31
New cards

what does & represent

hexadecimal number

32
New cards

what does # represent

denary number

33
New cards

Opcode: IN Operand: … | what does it do

key in a character and store its ASCII value in ACC

34
New cards

Opcode: OUT Operand: | what does it do

output to the screen the character whose ASCII value stored in ACC

35
New cards

Opcode: ADD Operand: <address> | what does it do

add the contents of the specified address to the ACC

36
New cards

Opcode: ADD Operand: #n | what does it do

add the denary number n to the ACC

37
New cards

Opcode: SUB Operand: <address> | what does it do

subtract the contents of the specified address from the ACC

38
New cards

Opcode: SUB Operand: #n | what does it do

subtract the number n from the ACC

39
New cards

Opcode: INC Operand: <register> | what does it do

add 1 to the contents of the register

40
New cards

Opcode: DEC Operand: <register> | what does it do

subtract 1 from the contents of the register

41
New cards

Opcode: JMP Operand: <address> | what does it do

jump to specified address

42
New cards

Opcode: JPE Operand: <address> | what does it do

following a compare instruction, jump to the specified address if the comparison is true

43
New cards

Opcode: JPN Operand: <address> | what does it do

following a compare instruction, jump to the specified address if the comparision is false

44
New cards

Opcode: CMP Operand: <address> | what does it do

compare the contents of ACC with the contents of the specified address

45
New cards

Opcode: CMP Operand: #n | what does it do

compare the contens of ACC with the number n

46
New cards

Opcode: CMI Operand: <address> | what does it do

the address to be used is the contents of the specified address

47
New cards

what kind of directing mode is LDM #n

immediate address

48
New cards

directing LDD <address>

direct or absolute address is used

49
New cards

LDI addressing is used

<address>

50
New cards

what is data movement instructions

allows data stored at one location to be copied into accumulator