Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Build a 2-bit CPU by expanding the 1-bit CPU described in the lab notes. Remember to have a 2-bit bus for your design. The 2-bit

Build a 2-bit CPU by expanding the 1-bit CPU described in the lab notes. Remember to have a 2-bit bus for your design.

The 2-bit CPU will do the following operations:

For instruction 00, do 2-bit XOR, test 10 XOR 11 = 01

For instruction 01, do 2-bit AND, test 10 AND 11 = 10

For instruction 10, do bit Addition, use your half adder, test 1 + 1 = 10, leave the higher bus bit as 0 for the input operands.

For instruction 11, do bit Subtraction, use your half subtractor and make the connections do ACC - TEMP, test 0 - 1 = 11, leave the higher bus bit as 0 for the input operands.

Hand in the following:

The completed 2-bit CPU circuit.

The micro instructions (steps necessary) to implement the following operations described above. Remember the pre-conditions.

Do the XOR operation with the values in register B and C, and store the result in C.

Do the AND operation with the values in register B and C, and store the result in B.

Do the ADD operation with the values in register ACC and C, and store the result in B. For the operands, use values in the lower bit and fill the higher bit with 0. For the result, store the sum bit in the lower bit and carry bit in the higher bit.

Do the SUB operation with the values in register B and TEMP, and store the result in C. For the operands, use values in the lower bit and fill the higher bit with 0. For the result, store the difference bit in the lower bit and the borrow bit in the higher bit.

Please Note: For all above four operations, you need to preload values in the registers from the EXTin. Use the above testing examples for your lab hand-in micro instructions.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions