返回卡包市场

Assembly Language / LMC

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 15内容版本: v3公开卡包更新时间: 8/1/2026

卡片预览 (15 张)

#1
正面 (问题)

What does the Mnemonic ADD do?

背面 (解答)

Add to the value in the Accumulator

#2
正面 (问题)

What does the Mnemonic SUB do?

背面 (解答)

Subtract from the value in the Accumilator

#3
正面 (问题)

What does the Mnemonic STA do?

背面 (解答)

Stores the current value in the Accumilator

#4
正面 (问题)

What does the Mnemonic LDA do?

背面 (解答)

Loads a value

#5
正面 (问题)

What does the Mnemonic BRA do?

背面 (解答)

Branches always

#6
正面 (问题)

What does the Mnemonic BRZ do?

背面 (解答)

Branches if zero

#7
正面 (问题)

What does the Mnemonic BRP do?

背面 (解答)

Branches if positive

#8
正面 (问题)

What does the Mnemonic INP do?

背面 (解答)

Allows for a value to be inputted

#9
正面 (问题)

What does the Mnemonic OUT do?

背面 (解答)

Outputs the value

#10
正面 (问题)

What does the Mnemonic HLT do?

背面 (解答)

Ends the program

#11
正面 (问题)

What does the Mnemonic DAT do?

背面 (解答)

Data location

#12
正面 (问题)

What is the point of Mnemonics?

背面 (解答)

They’re more easily readable by humans, as each Mnemonic translates to a binary function.

#13
正面 (问题)

What kind of language is LMC?

背面 (解答)

An Assembly Language

#14
正面 (问题)

What is the order for each line in LMC code?

背面 (解答)

A Lable (for variable names) A Mnemonic (for the function) The Data (to be used)

#15
正面 (问题)

Where is the calculation undertaken?

背面 (解答)

Within the ALU