Preliminary Final Project Problem Set Harvard Extension School CSCI E-93: Computer Architecture Fall 2024 Due: November 3, 2024 at Midnight ET (Eastern Time) Total of 10 Points (10% of final project grade) This assignment will count toward the grade for the final project not toward the grade for problem sets. For this assignment, based on your architecture design from Problem Set 2 with appropriate modifications made by you based on comments and design changes, complete the following assignment. Please submit your solution to this problem set using "git" with named branch prelim-term-project. Produce VHDL code for the ALU (Arithmetic Logic Unit) of your final project. Your ALU should be built from an elementary bit-slice design in which your ALU operations are constructed from simple Boolean logic gates (e.g., do *not* use the VHDL add operator, +, on integers to construct your adder). Of course, you are able to use all the basic Boolean operators in VHDL such as and, or, not, xor, xnor. The ALU should be able to perform all operations required by your instruction set/block diagram. Your CPU should be implemented using combinational logic (i.e., using VHDL concurrent assignment operators). This solution should not have any memory components; therefore, a process is not required in the solution to this problem set. You are allowed to use a process if you want to use VHDL constructs that must be inside a process (for example, if you want to use an "If" or a "Case" statement); however, a process is not needed to complete the VHDL code. Please include with this assignment an up-to-date copy of your processor's block diagram and an up-to-date copy of your processor's instruction set. Last revised 1-Sep-24