76.3k views
0 votes
What are the two instructions needed in the basic computer in order to set the E flip-flop to 1?

User Olimart
by
8.8k points

1 Answer

4 votes

Answer:

Load and save instructions. The specific instructions may vary depending on the computer`s architecture, but the general process is to load the desired value into a register and store it in a flip-flop. Below is an example of a hypothetical assembly procedure.

Load Instruction: Load the value 1 into a register.

"""

LOAD R1, 1

"""

Store Instruction: Store the value from the register into the flip-flop.

"""

STORE R1, FlipFlop

"""
weird question but this might help

User Smitsyn
by
7.6k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.