#Computer Architecture Lab
This file contains the code written during Computer Architecture Lab (CS493) course.
###How to run in Linux Environment
- Install
iverilogby the following commandsudo apt-get install iverilog - Compile the .v file using
iverilog <filename>.vto generate the output on standarda.outfile oriverilog <filename>.v -o <filename2>to store the output file on<filename2> - Run the output file by
./a.outor./<filename> - To view the output of the vcd file, install gtkwave by the command
sudo apt-get install gtkwave - Open the vcd file in gtkwave by the command
gtkwave <filename>.vcd