#Computer Architecture Lab
This file contains the code written during Computer Architecture Lab (CS493) course.
###How to run in Linux Environment
- Install
iverilog
by the following commandsudo apt-get install iverilog
- Compile the .v file using
iverilog <filename>.v
to generate the output on standarda.out
file oriverilog <filename>.v -o <filename2>
to store the output file on<filename2>
- Run the output file by
./a.out
or./<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