1.2.4 Types of Programming Language Flashcards
LMC Only
What is the instruction for ADD?
Add
What is the instruction for SUB?
Subtract
What is the instruction for STA?
Store
What is the instruction for LDA?
Load
What is the instruction for BRA?
Branch Always
What is the instruction for BRP?
Branch If Positive
What is the instruction for BRZ?
Branch If Zero
What is the instruction for INP?
Input
What is the instruction for OUT?
Output
What is the instruction for HLT?
Halt
What is the instruction for DAT?
Data
What is the mnemonic for add?
ADD
What is the mnemonic for Subtract?
SUB
What is the mnemonic for Store?
STA
What is the mnemonic for Load?
LDA
What is the mnemonic for Branch Always?
BRA
What is the mnemonic for Branch If Zero?
BRZ
What is the mnemonic for Branch If Positive?
BRP
What is the mnemonic for Input?
INP
What is the mnemonic for Output?
OUT
What is the mnemonic for Halt?
HLT
What is the mnemonic for Data?
DAT
What is the code for Add?
1XX
What is the code for Subtract?
2XX
What is the code for Store?
3XX
What is the code for Load?
5XX
What is the code for Branch Always?
6XX
What is the code for Branch If Zero?
7XX
What is the code for Branch If Positive?
8XX
What is the code for Input?
901
What is the code for Output?
902
What is the code for Halt?
0
What do X’s in codes identify?
The memory address the action is to be done on.
What does ADD do?
LMC
Adds the contents of that memory to the accumulator.
Addition
What does SUB do?
LMC
Subtract the contents of that memory to the accumulator.
Subtract
What does STA do?
LMC
Stores the value of the accumulator in the address given
Store
What does LDA do?
LMC
Load the accumulator with the contents of the memory address given
Load
What does BRA do?
LMC
The given address is the location of the next instruction.
Branch Always
What does BRZ do?
LMC
Branch to the given address if the value of the accumulator is zero
Branch if Zero
What does BRP do?
LMC
Branches to the given address if the value of the accumulator is positive or zero
Branch if Positive
What does INP do?
LMC
Inputs a number into the accumulator
Input
What does OUT do?
LMC
Outputs the contents of the accumulator
Output
What does HLT do?
LMC
Stops the execution of the program
Halt
What does DAT do?
LMC
Indicate the location that contains data (essentially a variable)
Data