Introduction
For this assignment, you will write a cycle-level simulator for the LC-3b. The simulator will take two input files:
Note: The file isaprogram is the output file from the assembler.linux . This file should consist of 4 hex characters per line. Each line of 4 hex characters should be prefixed with '0x'. For example, the instruction NOT R1, R6 would have been assembled to 1001001110111111. This instruction would be represented in the isaprogram file as 0x93BF. The file ucode is an ASCII file that consists of 64 rows and 35 columns of zeros and ones.
The simulator is partitioned into two main sections: the shell and the simulation routines. We are providing you with the shell. Your job is to write the simulation routines.
The Shell
The purpose of the shell is to provide the user with commands to control the execution of the simulator. In order to extract information from the simulator, a file named dumpsim will be created to hold information requested from the simulator. The shell supports the following commands:
The simulation routines carry out the cycle-by-cycle simulation of the input LC-3b program. The simulation of any cycle is based on the contents of the current latches in the system. The simulation consists of two concurrently executing phases:
The microsequencer phase uses 9 bits from the microinstruction register and appropriate literals from the datapath to determine the next microinstruction. Function eval_micro_sequencer evaluates this phase.
The datapath phase uses 26 bits of the microinstruction to manipulate the data in the datapath. Each microinstruction must be literally interpreted. For example, if the GateMDR bit is asserted, then data must go from the MDR onto the bus. You must also establish an order for events to occur during a machine cycle. For example, data should be gated onto the bus first, and loaded into a register at the end of the cycle. Simulate these events by writing the code for functions eval_bus_drivers, drive_bus and latch_datapath_values.
We will assume a memory operation takes five cycles to complete. That is, the ready bit is asserted at the end of the fourth cycle. Function cycle_memory emulates memory.
What To Do
The shell has been written for you. From your CoC account, copy the following file to your work directory:
lc3bsim3.cAt present, the shell reads in the microcode and input program and initializes the machine. It is your responsibility to write the correct microcode file and to complete the simulation routines that simulate the activity of the LC-3b microarchitecture. In particular, you will be writing the five functions described above (eval_micro_sequencer, cycle_memory, eval_bus_drivers, drive_bus, and latch_datapath_values).
Add your code to the end of the shell code. Do not modify the shell code.
The accuracy of your simulator is your main priority. Specifically, make sure the correct microarchitectural structures sample the correct signals. It is your responsibility to verify that your simulator is working correctly. You should write programs using all of the LC-3b instructions and execute them one cycle at a time (run 1). You can use the rdump and mdump commands to verify that the state of the machine is updated correctly after the execution of each cycle.
Because we will be evaluating your code on linux, you must be sure your code compiles on an CoC linux machine (helsinki.cc.gatech.edu) using gcc with the -ansi flag. This means that you need to write your code in C such that it conforms to the ANSI C standard. You should also make sure that your code runs correctly on helsinki machine.
What To Turn In
Please submit your programming assignment at T-square. You will submit the following files:
Important