├── .gitignore ├── LICENSE.md ├── README.md ├── alu.v ├── cq.jpg ├── cq.v ├── lib.v ├── reg_alu.v ├── tb_cq.v └── tests.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/README.md -------------------------------------------------------------------------------- /alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/alu.v -------------------------------------------------------------------------------- /cq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/cq.jpg -------------------------------------------------------------------------------- /cq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/cq.v -------------------------------------------------------------------------------- /lib.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/lib.v -------------------------------------------------------------------------------- /reg_alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/reg_alu.v -------------------------------------------------------------------------------- /tb_cq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/tb_cq.v -------------------------------------------------------------------------------- /tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aniketnk/circular-queue-verilog/HEAD/tests.txt --------------------------------------------------------------------------------