Use file headers and function header blocks to describe the purpose of your programs and functions. Sample file/function headers are provided with PA0.
/* \file LC3state_init.c
\brief Definition of the LC3state_init function.
\author Joe Jane Student
\userid joejane
\date 7/14/08
*/
/*!
\brief Simulates the specified alu instruction on the given inputs and returns the results.
\param op ALU operation specified with ALUK enum type
\param B Input B in book Figure 4.3
\param A Input A in book Figure 4.3
\sideeffect None
\errorchecks Asserts if unknown ALU operation is provided
\return Word that results from performing op on A and B
*/