AveryWong03 commited on
Commit
671fe55
·
verified ·
1 Parent(s): 27c1065

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_master/bugs/state_transition/diff.patch +11 -0
  2. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_master/bugs/state_transition/sim_log.txt +2 -0
  3. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/buggy_waveform.fst +0 -0
  4. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/diff.patch +11 -0
  5. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/metadata.json +16 -0
  6. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/sim_log.txt +2 -0
  7. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/buggy_waveform.fst +0 -0
  8. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/diff.patch +19 -0
  9. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/metadata.json +17 -0
  10. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/sim_log.txt +2 -0
  11. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/buggy_waveform.fst +0 -0
  12. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/diff.patch +11 -0
  13. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/metadata.json +5 -0
  14. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/sim_log.txt +2 -0
  15. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/buggy_waveform.fst +0 -0
  16. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/diff.patch +11 -0
  17. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/metadata.json +5 -0
  18. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/sim_log.txt +8 -0
  19. arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/sim.sh +11 -0
  20. arhamhashmi01_Axi4-lite/sim_script_map.json +3 -0
  21. arhamhashmi01_Axi4-lite/simulations.jsonl +1 -0
  22. arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/Makefile +26 -0
  23. arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_master.sv +130 -0
  24. arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_slave.sv +134 -0
  25. arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_top.sv +70 -0
  26. arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_top_tb.sv +51 -0
  27. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.hw/Axi4-lite-vivado.lpr +6 -0
  28. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.ip_user_files/README.txt +1 -0
  29. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb.tcl +11 -0
  30. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb_behav.wdb +0 -0
  31. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb_vlog.prj +12 -0
  32. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/compile.bat +25 -0
  33. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/compile.log +0 -0
  34. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/elaborate.bat +23 -0
  35. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/elaborate.log +7 -0
  36. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/glbl.v +71 -0
  37. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/simulate.bat +23 -0
  38. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/simulate.log +0 -0
  39. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/webtalk.jou +12 -0
  40. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv +74 -0
  41. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv +132 -0
  42. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv +136 -0
  43. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv +92 -0
  44. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.xpr +168 -0
  45. arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/waveform.wcfg +111 -0
  46. arhamhashmi01_Axi4-lite/source/README.md +80 -0
  47. arhamhashmi01_Axi4-lite/testbenches.json +14 -0
  48. arhamhashmi01_Axi4-lite/waveform_map.json +3 -0
  49. completed.json +273 -227
  50. manifest.json +26 -538
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_master/bugs/state_transition/diff.patch ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --- a/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv
2
+ +++ b/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv
3
+ @@ -125,7 +125,7 @@
4
+ RADDR_CHANNEL : if (M_ARVALID && M_ARREADY ) next_state = RDATA__CHANNEL;
5
+ RDATA__CHANNEL : if (M_RVALID && M_RREADY ) next_state = IDLE;
6
+ WRITE_CHANNEL : if (write_addr && write_data) next_state = WRESP__CHANNEL;
7
+ - WRESP__CHANNEL : if (M_BVALID && M_BREADY ) next_state = IDLE;
8
+ + WRESP__CHANNEL : if (M_BVALID && M_BREADY ) next_state = WRITE_CHANNEL;
9
+ default : next_state = IDLE;
10
+ endcase
11
+ end
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_master/bugs/state_transition/sim_log.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ FST info: dumpfile wave_axi4_lite_top.fst opened for output.
2
+ FST warning: $dumpvars: Unsupported argument type (vpiPackage)
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/buggy_waveform.fst ADDED
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/diff.patch ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --- a/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv
2
+ +++ b/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv
3
+ @@ -119,7 +119,7 @@
4
+ if (S_AWVALID) begin
5
+ next_state = WRITE_CHANNEL;
6
+ end
7
+ - else if (S_ARVALID) begin
8
+ + else if (!S_ARVALID) begin
9
+ next_state = RADDR_CHANNEL;
10
+ end
11
+ else begin
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/metadata.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bug_type": "inverted_condition",
3
+ "task_type": "behavioral_bug",
4
+ "files_modified": [
5
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv"
6
+ ],
7
+ "bug_description": "Inverted 'S_ARVALID' condition in IDLE state \u2014 read address channel transition now triggers when S_ARVALID is deasserted instead of asserted",
8
+ "signals_affected": [
9
+ "S_ARVALID"
10
+ ],
11
+ "simulation_status": "sim_ok",
12
+ "problem_statement": "The AXI read address channel state machine enters an unexpected invalid state at t=5000, causing all interface signals to become undefined (x). At this point, the interconnect should be idling with S_ARVALID deasserted, waiting for a valid read request, but instead the state machine exits IDLE incorrectly, propagating undefined values through M_ARVALID, M_ARADDR, S_ARREADY, and cascading through the entire write channel (M_AWVALID, M_AWADDR, M_WVALID, S_AWREADY, S_WREADY, S_BVALID). This violates basic AXI protocol requirements where the slave must present valid ready and data signals in response to address transactions, not undefined values.",
13
+ "diff_summary": "4 changed lines",
14
+ "buggy_waveform": "buggy_waveform.fst",
15
+ "golden_waveform": "golden_waveform.fst"
16
+ }
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/inverted_condition/sim_log.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ FST info: dumpfile wave_axi4_lite_top.fst opened for output.
2
+ FST warning: $dumpvars: Unsupported argument type (vpiPackage)
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/buggy_waveform.fst ADDED
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/diff.patch ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --- a/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv
2
+ +++ b/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv
3
+ @@ -69,6 +69,8 @@
4
+ typedef enum logic [2 : 0] {IDLE,WRITE_CHANNEL,WRESP__CHANNEL, RADDR_CHANNEL, RDATA__CHANNEL} state_type;
5
+ state_type state , next_state;
6
+
7
+ + initial addr = 'hx;
8
+ +
9
+ // AR
10
+ assign S_ARREADY = (state == RADDR_CHANNEL) ? 1 : 0;
11
+ //
12
+ @@ -106,7 +108,6 @@
13
+
14
+ always_ff @(posedge ACLK) begin
15
+ if (!ARESETN) begin
16
+ - state <= IDLE;
17
+ end
18
+ else begin
19
+ state <= next_state;
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/metadata.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bug_type": "missing_reset",
3
+ "task_type": "behavioral_bug",
4
+ "files_modified": [
5
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv"
6
+ ],
7
+ "bug_description": "Removed synchronous reset for 'state' register in axi4_lite_slave; state FSM register no longer initializes to IDLE on reset, and 'addr' register is initialized to X to make missing reset observable",
8
+ "signals_affected": [
9
+ "state",
10
+ "addr"
11
+ ],
12
+ "simulation_status": "sim_ok",
13
+ "problem_statement": "After reset de-assertion at t=5000, the AXI4-Lite slave outputs are stuck in an undefined state. All control signals\u2014S_ARREADY, S_AWREADY, S_WREADY, S_RVALID, and S_BVALID\u2014show X values instead of their expected low states, and S_RDATA also reads as all Xs. The slave never transitions to a known state and cannot respond to read or write requests. This appears to occur immediately upon reset release, suggesting the internal state machine is not properly initialized during the reset sequence.",
14
+ "diff_summary": "5 changed lines",
15
+ "buggy_waveform": "buggy_waveform.fst",
16
+ "golden_waveform": "golden_waveform.fst"
17
+ }
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_slave/bugs/missing_reset/sim_log.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ FST info: dumpfile wave_axi4_lite_top.fst opened for output.
2
+ FST warning: $dumpvars: Unsupported argument type (vpiPackage)
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/buggy_waveform.fst ADDED
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/diff.patch ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --- a/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv
2
+ +++ b/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv
3
+ @@ -72,7 +72,7 @@
4
+ .ACLK(ACLK),
5
+ .ARESETN(ARESETN),
6
+ .S_ARREADY(M_ARREADY),
7
+ - .S_RDATA(S_RDATA),
8
+ + .S_RDATA(),
9
+ .S_RRESP(S_RRESP),
10
+ .S_RVALID(S_RVALID),
11
+ .S_ARADDR(M_ARADDR),
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/metadata.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bug_type": "unconnected_port",
3
+ "simulation_status": "waveform_identical",
4
+ "signals_compared": 17
5
+ }
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/unconnected_port/sim_log.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ FST info: dumpfile wave_axi4_lite_top.fst opened for output.
2
+ FST warning: $dumpvars: Unsupported argument type (vpiPackage)
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/buggy_waveform.fst ADDED
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/diff.patch ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --- a/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv
2
+ +++ b/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv
3
+ @@ -35,7 +35,7 @@
4
+ logic M_ARREADY,S_RVALID,M_ARVALID,M_RREADY,S_AWREADY,S_BVALID,M_AWVALID,M_BREADY,M_WVALID,S_WREADY;
5
+ logic [ADDRESS-1 : 0] M_ARADDR;
6
+ logic [ADDRESS-1 : 0] M_AWADDR;
7
+ - logic [DATA_WIDTH-1:0]M_WDATA;
8
+ + logic [DATA_WIDTH-3:0]M_WDATA;
9
+ logic [DATA_WIDTH-1:0]S_RDATA;
10
+ logic [3:0]M_WSTRB;
11
+ logic [1:0]S_RRESP,S_BRESP;
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/metadata.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "bug_type": "wrong_bitwidth",
3
+ "simulation_status": "waveform_identical",
4
+ "signals_compared": 17
5
+ }
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/bugs/wrong_bitwidth/sim_log.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FST info: dumpfile wave_axi4_lite_top.fst opened for output.
2
+ FST warning: $dumpvars: Unsupported argument type (vpiPackage)
3
+
4
+ --- STDERR ---
5
+ /tmp/sim4_simsh_ajdomuh6/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv:43: warning: Port 20 (M_WDATA) of axi4_lite_master expects 32 bits, got 30.
6
+ /tmp/sim4_simsh_ajdomuh6/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv:43: : Padding 2 high bits of the port.
7
+ /tmp/sim4_simsh_ajdomuh6/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv:70: warning: Port 8 (S_WDATA) of axi4_lite_slave expects 32 bits, got 30.
8
+ /tmp/sim4_simsh_ajdomuh6/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv:70: : Padding 2 high bits of the port.
arhamhashmi01_Axi4-lite/candidates/axi4_lite_top__axi4_lite_top/sim.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ if ! command -v python &>/dev/null; then
4
+ _TMPBIN=$(mktemp -d)
5
+ ln -s "$(command -v python3)" "$_TMPBIN/python"
6
+ export PATH="$_TMPBIN:$PATH"
7
+ trap 'rm -rf "$_TMPBIN"' EXIT
8
+ fi
9
+ SRCDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
10
+ iverilog -g2012 -o /tmp/sim_axi4_lite_top "$SRCDIR/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv" "$SRCDIR/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv" "$SRCDIR/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv" "$SRCDIR/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv"
11
+ vvp /tmp/sim_axi4_lite_top -fst
arhamhashmi01_Axi4-lite/sim_script_map.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv": "axi4_lite_top_sim.sh"
3
+ }
arhamhashmi01_Axi4-lite/simulations.jsonl ADDED
@@ -0,0 +1 @@
 
 
1
+ {"tb_file_path": "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv", "simulator": "iverilog", "top_module": "axi4_lite_top", "work_subdir": null, "requires_submodules": false, "compile": {"args": ["-g2012"], "sources": ["Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv", "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv", "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv", "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv"]}, "run": {"args": ["-fst"]}, "waveform": "wave_axi4_lite_top.fst"}
arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/Makefile ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MODULE=axi4_lite_top
2
+
3
+ .PHONY:sim
4
+ sim: waveform.vcd
5
+
6
+ .PHONY:waves
7
+ waves: waveform.vcd
8
+ gtkwave waveform.vcd
9
+
10
+ waveform.vcd: ./obj_dir/V$(MODULE)
11
+ @./obj_dir/V$(MODULE)
12
+
13
+ ./obj_dir/V$(MODULE): .stamp.verilate
14
+ make -C obj_dir -f V$(MODULE).mk V$(MODULE)
15
+
16
+ .stamp.verilate: $(MODULE).sv $(MODULE)_tb.cpp
17
+ verilator -Wall --trace -cc $(MODULE).sv --exe $(MODULE)_tb.cpp
18
+
19
+ .PHONY:lint
20
+ lint: $(MODULE).sv
21
+ verilator --lint-only $(MODULE).sv
22
+
23
+ .PHONY: clean
24
+ clean:
25
+ rm -rf ./obj_dir
26
+ rm -rf waveform.vcd
arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_master.sv ADDED
@@ -0,0 +1,130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ //////////////////////////////////////////////////////////////////////////////////
2
+ // Company:
3
+ // Engineer:
4
+ //
5
+ // Create Date: 05/03/2024 03:21:17 PM
6
+ // Design Name:
7
+ // Module Name: axi4_lite_master
8
+ // Project Name:
9
+ // Target Devices:
10
+ // Tool Versions:
11
+ // Description:
12
+ //
13
+ // Dependencies:
14
+ //
15
+ // Revision:
16
+ // Revision 0.01 - File Created
17
+ // Additional Comments:
18
+ //
19
+ //////////////////////////////////////////////////////////////////////////////////
20
+
21
+ module axi4_lite_master #(
22
+ parameter ADDRESS = 32,
23
+ parameter DATA_WIDTH = 32
24
+ )
25
+ (
26
+ //Global Signals
27
+ input ACLK,
28
+ input ARESETN,
29
+
30
+ input START_READ,
31
+ input START_WRITE,
32
+
33
+ input [ADDRESS-1 : 0] address,
34
+ input [DATA_WIDTH-1:0] W_data,
35
+
36
+ //Read Address Channel INPUTS
37
+ input M_ARREADY,
38
+ //Read Data Channel INPUTS
39
+ /* verilator lint_off UNUSED */
40
+ input [DATA_WIDTH-1:0] M_RDATA,
41
+ input [1:0] M_RRESP,
42
+ input M_RVALID,
43
+ //Write Address Channel INPUTS
44
+ input M_AWREADY,
45
+ //
46
+ input M_WREADY,
47
+ //Write Response Channel INPUTS
48
+ input [1:0] M_BRESP,
49
+ input M_BVALID,
50
+ //Read Address Channel OUTPUTS
51
+ output logic [ADDRESS-1 : 0] M_ARADDR,
52
+ output logic M_ARVALID,
53
+ //Read Data Channel OUTPUTS
54
+ output logic M_RREADY,
55
+ //Write Address Channel OUTPUTS
56
+ output logic [ADDRESS-1 : 0] M_AWADDR,
57
+ output logic M_AWVALID,
58
+ //Write Data Channel OUTPUTS
59
+ output logic [DATA_WIDTH-1:0] M_WDATA,
60
+ output logic [3:0] M_WSTRB,
61
+ output logic M_WVALID,
62
+ //Write Response Channel OUTPUTS
63
+ output logic M_BREADY
64
+ );
65
+ logic read_start;
66
+ logic write_addr;
67
+ logic write_data;
68
+ logic write_start;
69
+
70
+ typedef enum logic [2 : 0] {IDLE,WRITE_CHANNEL,WRESP__CHANNEL, RADDR_CHANNEL, RDATA__CHANNEL} state_type;
71
+ state_type state , next_state;
72
+
73
+ //ar
74
+ assign M_ARADDR = (state == RADDR_CHANNEL) ? address : 32'h0;
75
+ assign M_ARVALID = (state == RADDR_CHANNEL) ? 1 : 0;
76
+ //r
77
+ assign M_RREADY = (state == RDATA__CHANNEL ||state == RADDR_CHANNEL) ? 1 : 0;
78
+ //aw
79
+ assign M_AWVALID = (state == WRITE_CHANNEL) ? 1 : 0;
80
+ assign M_AWADDR = (state == WRITE_CHANNEL) ? address : 32'h0;
81
+ assign write_addr = M_AWVALID && M_AWREADY;
82
+ assign write_data = M_WVALID && M_WREADY;
83
+ //W
84
+ assign M_WVALID = (state == WRITE_CHANNEL) ? 1 : 0;
85
+ assign M_WDATA = (state == WRITE_CHANNEL) ? W_data : 32'h0;
86
+ assign M_WSTRB = (state == WRITE_CHANNEL) ?4'b1111:0;
87
+ // B
88
+ assign M_BREADY = ((state == WRITE_CHANNEL)||(state == WRESP__CHANNEL)) ? 1 : 0;
89
+
90
+
91
+ always_ff @(posedge ACLK) begin
92
+ if (~ARESETN) begin
93
+ state <= IDLE;
94
+ end else begin
95
+ state <= next_state;
96
+ end
97
+ end
98
+
99
+ always_ff @(posedge ACLK) begin
100
+ if (~ARESETN) begin
101
+ read_start <= 0;
102
+ write_start<= 0;
103
+ end
104
+ else begin
105
+ read_start <= START_READ;
106
+ write_start<= START_WRITE;
107
+ end
108
+ end
109
+
110
+ always_comb begin
111
+ case (state)
112
+ IDLE : begin
113
+ if (write_start) begin
114
+ next_state = WRITE_CHANNEL;
115
+ end
116
+ else if (read_start) begin
117
+ next_state = RADDR_CHANNEL;
118
+ end
119
+ else begin
120
+ next_state = IDLE;
121
+ end
122
+ end
123
+ RADDR_CHANNEL : if (M_ARVALID && M_ARREADY ) next_state = RDATA__CHANNEL;
124
+ RDATA__CHANNEL : if (M_RVALID && M_RREADY ) next_state = IDLE;
125
+ WRITE_CHANNEL : if (write_addr && write_data) next_state = WRESP__CHANNEL;
126
+ WRESP__CHANNEL : if (M_BVALID && M_BREADY ) next_state = IDLE;
127
+ default : next_state = IDLE;
128
+ endcase
129
+ end
130
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_slave.sv ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ //////////////////////////////////////////////////////////////////////////////////
2
+ // Company:
3
+ // Engineer:
4
+ //
5
+ // Create Date: 05/03/2024 03:21:17 PM
6
+ // Design Name:
7
+ // Module Name: axi4_lite_slave
8
+ // Project Name:
9
+ // Target Devices:
10
+ // Tool Versions:
11
+ // Description:
12
+ //
13
+ // Dependencies:
14
+ //
15
+ // Revision:
16
+ // Revision 0.01 - File Created
17
+ // Additional Comments:
18
+ //
19
+ //////////////////////////////////////////////////////////////////////////////////
20
+
21
+ module axi4_lite_slave #(
22
+ parameter ADDRESS = 32,
23
+ parameter DATA_WIDTH = 32
24
+ )
25
+ (
26
+ //Global Signals
27
+ input ACLK,
28
+ input ARESETN,
29
+
30
+ ////Read Address Channel INPUTS
31
+ input [ADDRESS-1:0] S_ARADDR,
32
+ input S_ARVALID,
33
+ //Read Data Channel INPUTS
34
+ input S_RREADY,
35
+ //Write Address Channel INPUTS
36
+ /* verilator lint_off UNUSED */
37
+ input [ADDRESS-1:0] S_AWADDR,
38
+ input S_AWVALID,
39
+ //Write Data Channel INPUTS
40
+ input [DATA_WIDTH-1:0] S_WDATA,
41
+ input [3:0] S_WSTRB,
42
+ input S_WVALID,
43
+ //Write Response Channel INPUTS
44
+ input S_BREADY,
45
+
46
+ //Read Address Channel OUTPUTS
47
+ output logic S_ARREADY,
48
+ //Read Data Channel OUTPUTS
49
+ output logic [DATA_WIDTH-1:0]S_RDATA,
50
+ output logic [1:0] S_RRESP,
51
+ output logic S_RVALID,
52
+ //Write Address Channel OUTPUTS
53
+ output logic S_AWREADY,
54
+ output logic S_WREADY,
55
+ //Write Response Channel OUTPUTS
56
+ output logic [1:0] S_BRESP,
57
+ output logic S_BVALID
58
+ );
59
+
60
+ localparam no_of_registers = 32;
61
+
62
+ logic [DATA_WIDTH-1 : 0] register [no_of_registers-1 : 0];
63
+ logic [ADDRESS-1 : 0] addr;
64
+ logic write_addr;
65
+ logic write_data;
66
+
67
+ typedef enum logic [2 : 0] {IDLE,WRITE_CHANNEL,WRESP__CHANNEL, RADDR_CHANNEL, RDATA__CHANNEL} state_type;
68
+ state_type state , next_state;
69
+
70
+ // AR
71
+ assign S_ARREADY = (state == RADDR_CHANNEL) ? 1 : 0;
72
+ //
73
+ assign S_RVALID = (state == RDATA__CHANNEL) ? 1 : 0;
74
+ assign S_RDATA = (state == RDATA__CHANNEL) ? register[addr] : 0;
75
+ assign S_RRESP = (state == RDATA__CHANNEL) ?2'b00:0;
76
+ // AW
77
+ assign S_AWREADY = (state == WRITE_CHANNEL) ? 1 : 0;
78
+ // W
79
+ assign S_WREADY = (state == WRITE_CHANNEL) ? 1 : 0;
80
+ assign write_addr = S_AWVALID && S_AWREADY;
81
+ assign write_data = S_WREADY &&S_WVALID;
82
+ // B
83
+ assign S_BVALID = (state == WRESP__CHANNEL) ? 1 : 0;
84
+ assign S_BRESP = (state == WRESP__CHANNEL )? 0:0;
85
+
86
+ integer i;
87
+
88
+ always_ff @(posedge ACLK) begin
89
+ // Reset the register array
90
+ if (~ARESETN) begin
91
+ for (i = 0; i < 32; i++) begin
92
+ register[i] <= 32'b0;
93
+ end
94
+ end
95
+ else begin
96
+ if (state == WRITE_CHANNEL) begin
97
+ register[S_AWADDR] <= S_WDATA;
98
+ end
99
+ else if (state == RADDR_CHANNEL) begin
100
+ addr <= S_ARADDR;
101
+ end
102
+ end
103
+ end
104
+
105
+ always_ff @(posedge ACLK) begin
106
+ if (!ARESETN) begin
107
+ state <= IDLE;
108
+ end
109
+ else begin
110
+ state <= next_state;
111
+ end
112
+ end
113
+
114
+ always_comb begin
115
+ case (state)
116
+ IDLE : begin
117
+ if (S_AWVALID) begin
118
+ next_state = WRITE_CHANNEL;
119
+ end
120
+ else if (S_ARVALID) begin
121
+ next_state = RADDR_CHANNEL;
122
+ end
123
+ else begin
124
+ next_state = IDLE;
125
+ end
126
+ end
127
+ RADDR_CHANNEL : if (S_ARVALID && S_ARREADY ) next_state = RDATA__CHANNEL;
128
+ RDATA__CHANNEL : if (S_RVALID && S_RREADY ) next_state = IDLE;
129
+ WRITE_CHANNEL : if (write_addr &&write_data) next_state = WRESP__CHANNEL;
130
+ WRESP__CHANNEL : if (S_BVALID && S_BREADY ) next_state = IDLE;
131
+ default : next_state = IDLE;
132
+ endcase
133
+ end
134
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_top.sv ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ module axi4_lite_top#(
2
+ parameter DATA_WIDTH = 32,
3
+ parameter ADDRESS = 32
4
+ )(
5
+ input ACLK,
6
+ input ARESETN,
7
+ input read_s,
8
+ input write_s,
9
+ input [ADDRESS-1:0] address,
10
+ input [DATA_WIDTH-1:0] W_data
11
+ );
12
+
13
+ logic M_ARREADY,S_RVALID,M_ARVALID,M_RREADY,S_AWREADY,S_BVALID,M_AWVALID,M_BREADY,M_WVALID,S_WREADY;
14
+ logic [ADDRESS-1 : 0] M_ARADDR;
15
+ logic [ADDRESS-1 : 0] M_AWADDR;
16
+ logic [DATA_WIDTH-1:0]M_WDATA;
17
+ logic [DATA_WIDTH-1:0]S_RDATA;
18
+ logic [3:0]M_WSTRB;
19
+ logic [1:0]S_RRESP,S_BRESP;
20
+
21
+ axi4_lite_master u_axi4_lite_master0
22
+ (
23
+ .ACLK(ACLK),
24
+ .ARESETN(ARESETN),
25
+ .START_READ(read_s),
26
+ .address(address),
27
+ .W_data(W_data),
28
+ .M_ARREADY(M_ARREADY),
29
+ .M_RDATA(S_RDATA),
30
+ .M_RRESP(S_RRESP),
31
+ .M_RVALID(S_RVALID),
32
+ .M_ARADDR(M_ARADDR),
33
+ .M_ARVALID(M_ARVALID),
34
+ .M_RREADY(M_RREADY),
35
+ .START_WRITE(write_s),
36
+ .M_AWREADY(S_AWREADY),
37
+ .M_WVALID(M_WVALID),
38
+ .M_WREADY(S_WREADY),
39
+ .M_BRESP(S_BRESP),
40
+ .M_BVALID(S_BVALID),
41
+ .M_AWADDR(M_AWADDR),
42
+ .M_AWVALID(M_AWVALID),
43
+ .M_WDATA(M_WDATA),
44
+ .M_WSTRB(M_WSTRB),
45
+ .M_BREADY(M_BREADY)
46
+ );
47
+
48
+ axi4_lite_slave u_axi4_lite_slave0
49
+ (
50
+ .ACLK(ACLK),
51
+ .ARESETN(ARESETN),
52
+ .S_ARREADY(M_ARREADY),
53
+ .S_RDATA(S_RDATA),
54
+ .S_RRESP(S_RRESP),
55
+ .S_RVALID(S_RVALID),
56
+ .S_ARADDR(M_ARADDR),
57
+ .S_ARVALID(M_ARVALID),
58
+ .S_RREADY(M_RREADY),
59
+ .S_AWREADY(S_AWREADY),
60
+ .S_WVALID(M_WVALID),
61
+ .S_WREADY(S_WREADY),
62
+ .S_BRESP(S_BRESP),
63
+ .S_BVALID(S_BVALID),
64
+ .S_AWADDR(M_AWADDR),
65
+ .S_AWVALID(M_AWVALID),
66
+ .S_WDATA(M_WDATA),
67
+ .S_WSTRB(M_WSTRB),
68
+ .S_BREADY(M_BREADY)
69
+ );
70
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-verilator/axi4_lite_top_tb.sv ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #include <verilated.h>
2
+ #include <verilated_vcd_c.h>
3
+ #include "Vaxi4_lite_top.h"
4
+
5
+ vluint64_t sim_time = 0;
6
+
7
+ void read_values(Vaxi4_lite_top* dut) {
8
+ if (sim_time == 0 && sim_time < 5) {
9
+ dut->ACLK = 0;
10
+ dut->ARESETN = 0;
11
+ } else if (sim_time >= 5) {
12
+ dut->ARESETN = 1;
13
+ }
14
+ if (sim_time == 7) {
15
+ dut->write_s = 1;
16
+ dut->address = 5;
17
+ dut->W_data = 4;
18
+ } else if (sim_time == 9&& sim_time < 15) {
19
+ dut->write_s = 0;
20
+ }
21
+ else if (sim_time == 21) {
22
+ dut->read_s = 1;
23
+ dut->address = 5;
24
+ }
25
+ else if (sim_time == 23) {
26
+ dut->read_s = 0;}
27
+ }
28
+
29
+ int main(int argc, char** argv, char** env) {
30
+ Vaxi4_lite_top* dut = new Vaxi4_lite_top;
31
+
32
+ Verilated::traceEverOn(true);
33
+ VerilatedVcdC* m_trace = new VerilatedVcdC;
34
+ dut->trace(m_trace, 99); // Trace 99 levels of hierarchy
35
+ m_trace->open("waveform.vcd");
36
+
37
+ dut->ACLK = 0;
38
+ dut->ARESETN = 0;
39
+
40
+ while (sim_time <= 40) {
41
+ dut->ACLK = !dut->ACLK;
42
+ read_values(dut);
43
+ dut->eval();
44
+ m_trace->dump(sim_time);
45
+ sim_time++;
46
+ }
47
+
48
+ m_trace->close();
49
+ delete dut;
50
+ exit(EXIT_SUCCESS);
51
+ }
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.hw/Axi4-lite-vivado.lpr ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Product Version: Vivado v2018.2 (64-bit) -->
3
+ <!-- -->
4
+ <!-- Copyright 1986-2018 Xilinx, Inc. All Rights Reserved. -->
5
+
6
+ <labtools version="1" minor="0"/>
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.ip_user_files/README.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ The files in this directory structure are automatically generated and managed by Vivado. Editing these files is not recommended.
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb.tcl ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ set curr_wave [current_wave_config]
2
+ if { [string length $curr_wave] == 0 } {
3
+ if { [llength [get_objects]] > 0} {
4
+ add_wave /
5
+ set_property needs_save false [current_wave_config]
6
+ } else {
7
+ send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."
8
+ }
9
+ }
10
+
11
+ run 1000ns
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb_behav.wdb ADDED
Binary file (24 kB). View file
 
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/axi4_lite_top_tb_vlog.prj ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # compile verilog/system verilog design source files
2
+ sv xil_defaultlib \
3
+ "../../../../Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv" \
4
+ "../../../../Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv" \
5
+ "../../../../Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv" \
6
+ "../../../../Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv" \
7
+
8
+ # compile glbl module
9
+ verilog xil_defaultlib "glbl.v"
10
+
11
+ # Do not sort compile order
12
+ nosort
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/compile.bat ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ REM ****************************************************************************
3
+ REM Vivado (TM) v2018.2 (64-bit)
4
+ REM
5
+ REM Filename : compile.bat
6
+ REM Simulator : Xilinx Vivado Simulator
7
+ REM Description : Script for compiling the simulation design source files
8
+ REM
9
+ REM Generated by Vivado on Sat May 04 18:04:08 +0500 2024
10
+ REM SW Build 2258646 on Thu Jun 14 20:03:12 MDT 2018
11
+ REM
12
+ REM Copyright 1986-2018 Xilinx, Inc. All Rights Reserved.
13
+ REM
14
+ REM usage: compile.bat
15
+ REM
16
+ REM ****************************************************************************
17
+ echo "xvlog --incr --relax -prj axi4_lite_top_tb_vlog.prj"
18
+ call xvlog --incr --relax -prj axi4_lite_top_tb_vlog.prj -log xvlog.log
19
+ call type xvlog.log > compile.log
20
+ if "%errorlevel%"=="1" goto END
21
+ if "%errorlevel%"=="0" goto SUCCESS
22
+ :END
23
+ exit 1
24
+ :SUCCESS
25
+ exit 0
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/compile.log ADDED
File without changes
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/elaborate.bat ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ REM ****************************************************************************
3
+ REM Vivado (TM) v2018.2 (64-bit)
4
+ REM
5
+ REM Filename : elaborate.bat
6
+ REM Simulator : Xilinx Vivado Simulator
7
+ REM Description : Script for elaborating the compiled design
8
+ REM
9
+ REM Generated by Vivado on Sat May 04 18:04:09 +0500 2024
10
+ REM SW Build 2258646 on Thu Jun 14 20:03:12 MDT 2018
11
+ REM
12
+ REM Copyright 1986-2018 Xilinx, Inc. All Rights Reserved.
13
+ REM
14
+ REM usage: elaborate.bat
15
+ REM
16
+ REM ****************************************************************************
17
+ call xelab -wto 21efe0d2eda443e9bd204aa321f74156 --incr --debug typical --relax --mt 2 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip --snapshot axi4_lite_top_tb_behav xil_defaultlib.axi4_lite_top_tb xil_defaultlib.glbl -log elaborate.log
18
+ if "%errorlevel%"=="0" goto SUCCESS
19
+ if "%errorlevel%"=="1" goto END
20
+ :END
21
+ exit 1
22
+ :SUCCESS
23
+ exit 0
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/elaborate.log ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Vivado Simulator 2018.2
2
+ Copyright 1986-1999, 2001-2018 Xilinx, Inc. All Rights Reserved.
3
+ Running: E:/vivado/2018.2/bin/unwrapped/win64.o/xelab.exe -wto 21efe0d2eda443e9bd204aa321f74156 --incr --debug typical --relax --mt 2 -L xil_defaultlib -L unisims_ver -L unimacro_ver -L secureip --snapshot axi4_lite_top_tb_behav xil_defaultlib.axi4_lite_top_tb xil_defaultlib.glbl -log elaborate.log
4
+ Using 2 slave threads.
5
+ Starting static elaboration
6
+ Completed static elaboration
7
+ INFO: [XSIM 43-4323] No Change in HDL. Linking previously generated obj files to create kernel
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/glbl.v ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // $Header: /devl/xcs/repo/env/Databases/CAEInterfaces/verunilibs/data/glbl.v,v 1.14 2010/10/28 20:44:00 fphillip Exp $
2
+ `ifndef GLBL
3
+ `define GLBL
4
+ `timescale 1 ps / 1 ps
5
+
6
+ module glbl ();
7
+
8
+ parameter ROC_WIDTH = 100000;
9
+ parameter TOC_WIDTH = 0;
10
+
11
+ //-------- STARTUP Globals --------------
12
+ wire GSR;
13
+ wire GTS;
14
+ wire GWE;
15
+ wire PRLD;
16
+ tri1 p_up_tmp;
17
+ tri (weak1, strong0) PLL_LOCKG = p_up_tmp;
18
+
19
+ wire PROGB_GLBL;
20
+ wire CCLKO_GLBL;
21
+ wire FCSBO_GLBL;
22
+ wire [3:0] DO_GLBL;
23
+ wire [3:0] DI_GLBL;
24
+
25
+ reg GSR_int;
26
+ reg GTS_int;
27
+ reg PRLD_int;
28
+
29
+ //-------- JTAG Globals --------------
30
+ wire JTAG_TDO_GLBL;
31
+ wire JTAG_TCK_GLBL;
32
+ wire JTAG_TDI_GLBL;
33
+ wire JTAG_TMS_GLBL;
34
+ wire JTAG_TRST_GLBL;
35
+
36
+ reg JTAG_CAPTURE_GLBL;
37
+ reg JTAG_RESET_GLBL;
38
+ reg JTAG_SHIFT_GLBL;
39
+ reg JTAG_UPDATE_GLBL;
40
+ reg JTAG_RUNTEST_GLBL;
41
+
42
+ reg JTAG_SEL1_GLBL = 0;
43
+ reg JTAG_SEL2_GLBL = 0 ;
44
+ reg JTAG_SEL3_GLBL = 0;
45
+ reg JTAG_SEL4_GLBL = 0;
46
+
47
+ reg JTAG_USER_TDO1_GLBL = 1'bz;
48
+ reg JTAG_USER_TDO2_GLBL = 1'bz;
49
+ reg JTAG_USER_TDO3_GLBL = 1'bz;
50
+ reg JTAG_USER_TDO4_GLBL = 1'bz;
51
+
52
+ assign (strong1, weak0) GSR = GSR_int;
53
+ assign (strong1, weak0) GTS = GTS_int;
54
+ assign (weak1, weak0) PRLD = PRLD_int;
55
+
56
+ initial begin
57
+ GSR_int = 1'b1;
58
+ PRLD_int = 1'b1;
59
+ #(ROC_WIDTH)
60
+ GSR_int = 1'b0;
61
+ PRLD_int = 1'b0;
62
+ end
63
+
64
+ initial begin
65
+ GTS_int = 1'b1;
66
+ #(TOC_WIDTH)
67
+ GTS_int = 1'b0;
68
+ end
69
+
70
+ endmodule
71
+ `endif
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/simulate.bat ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @echo off
2
+ REM ****************************************************************************
3
+ REM Vivado (TM) v2018.2 (64-bit)
4
+ REM
5
+ REM Filename : simulate.bat
6
+ REM Simulator : Xilinx Vivado Simulator
7
+ REM Description : Script for simulating the design by launching the simulator
8
+ REM
9
+ REM Generated by Vivado on Sat May 04 17:57:53 +0500 2024
10
+ REM SW Build 2258646 on Thu Jun 14 20:03:12 MDT 2018
11
+ REM
12
+ REM Copyright 1986-2018 Xilinx, Inc. All Rights Reserved.
13
+ REM
14
+ REM usage: simulate.bat
15
+ REM
16
+ REM ****************************************************************************
17
+ call xsim axi4_lite_top_tb_behav -key {Behavioral:sim_1:Functional:axi4_lite_top_tb} -tclbatch axi4_lite_top_tb.tcl -log simulate.log
18
+ if "%errorlevel%"=="0" goto SUCCESS
19
+ if "%errorlevel%"=="1" goto END
20
+ :END
21
+ exit 1
22
+ :SUCCESS
23
+ exit 0
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/simulate.log ADDED
File without changes
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/webtalk.jou ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #-----------------------------------------------------------
2
+ # Webtalk v2018.2 (64-bit)
3
+ # SW Build 2258646 on Thu Jun 14 20:03:12 MDT 2018
4
+ # IP Build 2256618 on Thu Jun 14 22:10:49 MDT 2018
5
+ # Start of session at: Sat May 4 18:04:06 2024
6
+ # Process ID: 16528
7
+ # Current directory: E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim
8
+ # Command line: wbtcv.exe -mode batch -source E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/xsim.dir/axi4_lite_top_tb_behav/webtalk/xsim_webtalk.tcl -notrace
9
+ # Log file: E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/webtalk.log
10
+ # Journal file: E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim\webtalk.jou
11
+ #-----------------------------------------------------------
12
+ source E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.sim/sim_1/behav/xsim/xsim.dir/axi4_lite_top_tb_behav/webtalk/xsim_webtalk.tcl -notrace
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ `timescale 1ns / 1ps
2
+ //////////////////////////////////////////////////////////////////////////////////
3
+ // Company:
4
+ // Engineer:
5
+ //
6
+ // Create Date: 05/04/2024 05:55:37 PM
7
+ // Design Name:
8
+ // Module Name: axi4_lite_top_tb
9
+ // Project Name:
10
+ // Target Devices:
11
+ // Tool Versions:
12
+ // Description:
13
+ //
14
+ // Dependencies:
15
+ //
16
+ // Revision:
17
+ // Revision 0.01 - File Created
18
+ // Additional Comments:
19
+ //
20
+ //////////////////////////////////////////////////////////////////////////////////
21
+
22
+
23
+ module axi4_lite_top_tb();
24
+
25
+ logic ACLK_tb;
26
+ logic ARESETN_tb;
27
+ logic read_s_tb;
28
+ logic write_s_tb;
29
+ logic [31:0] address_tb;
30
+ logic [31:0] W_data_tb;
31
+
32
+ axi4_lite_top u_axi4_lite_top0(
33
+ .ACLK(ACLK_tb),
34
+ .ARESETN(ARESETN_tb),
35
+ .read_s(read_s_tb),
36
+ .write_s(write_s_tb),
37
+ .address(address_tb),
38
+ .W_data(W_data_tb)
39
+ );
40
+
41
+ initial begin
42
+ #5;
43
+ ACLK_tb=0;
44
+ ARESETN_tb=0;
45
+ read_s_tb=0;
46
+ write_s_tb=0;
47
+ #5;
48
+ ACLK_tb=1;
49
+ ARESETN_tb=1;
50
+ write_s_tb=0;
51
+ #15;
52
+ write_s_tb=1;
53
+ address_tb = 5;
54
+ W_data_tb = 4;
55
+
56
+ //read_s_tb=1;
57
+ #10;
58
+ write_s_tb=0;
59
+ #20;
60
+ write_s_tb=0;
61
+ read_s_tb=0;
62
+ #30;
63
+ read_s_tb=1;
64
+ address_tb = 5;
65
+ #10;
66
+ read_s_tb=0;
67
+ #40;
68
+ $finish;
69
+ end
70
+
71
+ always begin
72
+ #5 ACLK_tb = ~ACLK_tb;
73
+ end
74
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ `timescale 1ns / 1ps
2
+ //////////////////////////////////////////////////////////////////////////////////
3
+ // Company:
4
+ // Engineer:
5
+ //
6
+ // Create Date: 05/04/2024 05:52:55 PM
7
+ // Design Name:
8
+ // Module Name: axi4_lite_master
9
+ // Project Name:
10
+ // Target Devices:
11
+ // Tool Versions:
12
+ // Description:
13
+ //
14
+ // Dependencies:
15
+ //
16
+ // Revision:
17
+ // Revision 0.01 - File Created
18
+ // Additional Comments:
19
+ //
20
+ //////////////////////////////////////////////////////////////////////////////////
21
+
22
+
23
+ module axi4_lite_master #(
24
+ parameter ADDRESS = 32,
25
+ parameter DATA_WIDTH = 32
26
+ )
27
+ (
28
+ //Global Signals
29
+ input ACLK,
30
+ input ARESETN,
31
+
32
+ input START_READ,
33
+ input START_WRITE,
34
+
35
+ input [ADDRESS-1 : 0] address,
36
+ input [DATA_WIDTH-1:0] W_data,
37
+
38
+ //Read Address Channel INPUTS
39
+ input M_ARREADY,
40
+ //Read Data Channel INPUTS
41
+ /* verilator lint_off UNUSED */
42
+ input [DATA_WIDTH-1:0] M_RDATA,
43
+ input [1:0] M_RRESP,
44
+ input M_RVALID,
45
+ //Write Address Channel INPUTS
46
+ input M_AWREADY,
47
+ //
48
+ input M_WREADY,
49
+ //Write Response Channel INPUTS
50
+ input [1:0] M_BRESP,
51
+ input M_BVALID,
52
+ //Read Address Channel OUTPUTS
53
+ output logic [ADDRESS-1 : 0] M_ARADDR,
54
+ output logic M_ARVALID,
55
+ //Read Data Channel OUTPUTS
56
+ output logic M_RREADY,
57
+ //Write Address Channel OUTPUTS
58
+ output logic [ADDRESS-1 : 0] M_AWADDR,
59
+ output logic M_AWVALID,
60
+ //Write Data Channel OUTPUTS
61
+ output logic [DATA_WIDTH-1:0] M_WDATA,
62
+ output logic [3:0] M_WSTRB,
63
+ output logic M_WVALID,
64
+ //Write Response Channel OUTPUTS
65
+ output logic M_BREADY
66
+ );
67
+ logic read_start;
68
+ logic write_addr;
69
+ logic write_data;
70
+ logic write_start;
71
+
72
+ typedef enum logic [2 : 0] {IDLE,WRITE_CHANNEL,WRESP__CHANNEL, RADDR_CHANNEL, RDATA__CHANNEL} state_type;
73
+ state_type state , next_state;
74
+
75
+ //ar
76
+ assign M_ARADDR = (state == RADDR_CHANNEL) ? address : 32'h0;
77
+ assign M_ARVALID = (state == RADDR_CHANNEL) ? 1 : 0;
78
+ //r
79
+ assign M_RREADY = (state == RDATA__CHANNEL ||state == RADDR_CHANNEL) ? 1 : 0;
80
+ //aw
81
+ assign M_AWVALID = (state == WRITE_CHANNEL) ? 1 : 0;
82
+ assign M_AWADDR = (state == WRITE_CHANNEL) ? address : 32'h0;
83
+ assign write_addr = M_AWVALID && M_AWREADY;
84
+ assign write_data = M_WVALID && M_WREADY;
85
+ //W
86
+ assign M_WVALID = (state == WRITE_CHANNEL) ? 1 : 0;
87
+ assign M_WDATA = (state == WRITE_CHANNEL) ? W_data : 32'h0;
88
+ assign M_WSTRB = (state == WRITE_CHANNEL) ?4'b1111:0;
89
+ // B
90
+ assign M_BREADY = ((state == WRITE_CHANNEL)||(state == WRESP__CHANNEL)) ? 1 : 0;
91
+
92
+
93
+ always_ff @(posedge ACLK) begin
94
+ if (~ARESETN) begin
95
+ state <= IDLE;
96
+ end else begin
97
+ state <= next_state;
98
+ end
99
+ end
100
+
101
+ always_ff @(posedge ACLK) begin
102
+ if (~ARESETN) begin
103
+ read_start <= 0;
104
+ write_start<= 0;
105
+ end
106
+ else begin
107
+ read_start <= START_READ;
108
+ write_start<= START_WRITE;
109
+ end
110
+ end
111
+
112
+ always_comb begin
113
+ case (state)
114
+ IDLE : begin
115
+ if (write_start) begin
116
+ next_state = WRITE_CHANNEL;
117
+ end
118
+ else if (read_start) begin
119
+ next_state = RADDR_CHANNEL;
120
+ end
121
+ else begin
122
+ next_state = IDLE;
123
+ end
124
+ end
125
+ RADDR_CHANNEL : if (M_ARVALID && M_ARREADY ) next_state = RDATA__CHANNEL;
126
+ RDATA__CHANNEL : if (M_RVALID && M_RREADY ) next_state = IDLE;
127
+ WRITE_CHANNEL : if (write_addr && write_data) next_state = WRESP__CHANNEL;
128
+ WRESP__CHANNEL : if (M_BVALID && M_BREADY ) next_state = IDLE;
129
+ default : next_state = IDLE;
130
+ endcase
131
+ end
132
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ `timescale 1ns / 1ps
2
+ //////////////////////////////////////////////////////////////////////////////////
3
+ // Company:
4
+ // Engineer:
5
+ //
6
+ // Create Date: 05/04/2024 05:52:55 PM
7
+ // Design Name:
8
+ // Module Name: axi4_lite_slave
9
+ // Project Name:
10
+ // Target Devices:
11
+ // Tool Versions:
12
+ // Description:
13
+ //
14
+ // Dependencies:
15
+ //
16
+ // Revision:
17
+ // Revision 0.01 - File Created
18
+ // Additional Comments:
19
+ //
20
+ //////////////////////////////////////////////////////////////////////////////////
21
+
22
+
23
+ module axi4_lite_slave #(
24
+ parameter ADDRESS = 32,
25
+ parameter DATA_WIDTH = 32
26
+ )
27
+ (
28
+ //Global Signals
29
+ input ACLK,
30
+ input ARESETN,
31
+
32
+ ////Read Address Channel INPUTS
33
+ input [ADDRESS-1:0] S_ARADDR,
34
+ input S_ARVALID,
35
+ //Read Data Channel INPUTS
36
+ input S_RREADY,
37
+ //Write Address Channel INPUTS
38
+ /* verilator lint_off UNUSED */
39
+ input [ADDRESS-1:0] S_AWADDR,
40
+ input S_AWVALID,
41
+ //Write Data Channel INPUTS
42
+ input [DATA_WIDTH-1:0] S_WDATA,
43
+ input [3:0] S_WSTRB,
44
+ input S_WVALID,
45
+ //Write Response Channel INPUTS
46
+ input S_BREADY,
47
+
48
+ //Read Address Channel OUTPUTS
49
+ output logic S_ARREADY,
50
+ //Read Data Channel OUTPUTS
51
+ output logic [DATA_WIDTH-1:0]S_RDATA,
52
+ output logic [1:0] S_RRESP,
53
+ output logic S_RVALID,
54
+ //Write Address Channel OUTPUTS
55
+ output logic S_AWREADY,
56
+ output logic S_WREADY,
57
+ //Write Response Channel OUTPUTS
58
+ output logic [1:0] S_BRESP,
59
+ output logic S_BVALID
60
+ );
61
+
62
+ localparam no_of_registers = 32;
63
+
64
+ logic [DATA_WIDTH-1 : 0] register [no_of_registers-1 : 0];
65
+ logic [ADDRESS-1 : 0] addr;
66
+ logic write_addr;
67
+ logic write_data;
68
+
69
+ typedef enum logic [2 : 0] {IDLE,WRITE_CHANNEL,WRESP__CHANNEL, RADDR_CHANNEL, RDATA__CHANNEL} state_type;
70
+ state_type state , next_state;
71
+
72
+ // AR
73
+ assign S_ARREADY = (state == RADDR_CHANNEL) ? 1 : 0;
74
+ //
75
+ assign S_RVALID = (state == RDATA__CHANNEL) ? 1 : 0;
76
+ assign S_RDATA = (state == RDATA__CHANNEL) ? register[addr] : 0;
77
+ assign S_RRESP = (state == RDATA__CHANNEL) ?2'b00:0;
78
+ // AW
79
+ assign S_AWREADY = (state == WRITE_CHANNEL) ? 1 : 0;
80
+ // W
81
+ assign S_WREADY = (state == WRITE_CHANNEL) ? 1 : 0;
82
+ assign write_addr = S_AWVALID && S_AWREADY;
83
+ assign write_data = S_WREADY &&S_WVALID;
84
+ // B
85
+ assign S_BVALID = (state == WRESP__CHANNEL) ? 1 : 0;
86
+ assign S_BRESP = (state == WRESP__CHANNEL )? 0:0;
87
+
88
+ integer i;
89
+
90
+ always_ff @(posedge ACLK) begin
91
+ // Reset the register array
92
+ if (~ARESETN) begin
93
+ for (i = 0; i < 32; i++) begin
94
+ register[i] <= 32'b0;
95
+ end
96
+ end
97
+ else begin
98
+ if (state == WRITE_CHANNEL) begin
99
+ register[S_AWADDR] <= S_WDATA;
100
+ end
101
+ else if (state == RADDR_CHANNEL) begin
102
+ addr <= S_ARADDR;
103
+ end
104
+ end
105
+ end
106
+
107
+ always_ff @(posedge ACLK) begin
108
+ if (!ARESETN) begin
109
+ state <= IDLE;
110
+ end
111
+ else begin
112
+ state <= next_state;
113
+ end
114
+ end
115
+
116
+ always_comb begin
117
+ case (state)
118
+ IDLE : begin
119
+ if (S_AWVALID) begin
120
+ next_state = WRITE_CHANNEL;
121
+ end
122
+ else if (S_ARVALID) begin
123
+ next_state = RADDR_CHANNEL;
124
+ end
125
+ else begin
126
+ next_state = IDLE;
127
+ end
128
+ end
129
+ RADDR_CHANNEL : if (S_ARVALID && S_ARREADY ) next_state = RDATA__CHANNEL;
130
+ RDATA__CHANNEL : if (S_RVALID && S_RREADY ) next_state = IDLE;
131
+ WRITE_CHANNEL : if (write_addr &&write_data) next_state = WRESP__CHANNEL;
132
+ WRESP__CHANNEL : if (S_BVALID && S_BREADY ) next_state = IDLE;
133
+ default : next_state = IDLE;
134
+ endcase
135
+ end
136
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ `timescale 1ns / 1ps
2
+ //////////////////////////////////////////////////////////////////////////////////
3
+ // Company:
4
+ // Engineer:
5
+ //
6
+ // Create Date: 05/04/2024 05:52:55 PM
7
+ // Design Name:
8
+ // Module Name: axi4_lite_top
9
+ // Project Name:
10
+ // Target Devices:
11
+ // Tool Versions:
12
+ // Description:
13
+ //
14
+ // Dependencies:
15
+ //
16
+ // Revision:
17
+ // Revision 0.01 - File Created
18
+ // Additional Comments:
19
+ //
20
+ //////////////////////////////////////////////////////////////////////////////////
21
+
22
+
23
+ module axi4_lite_top#(
24
+ parameter DATA_WIDTH = 32,
25
+ parameter ADDRESS = 32
26
+ )(
27
+ input ACLK,
28
+ input ARESETN,
29
+ input read_s,
30
+ input write_s,
31
+ input [ADDRESS-1:0] address,
32
+ input [DATA_WIDTH-1:0] W_data
33
+ );
34
+
35
+ logic M_ARREADY,S_RVALID,M_ARVALID,M_RREADY,S_AWREADY,S_BVALID,M_AWVALID,M_BREADY,M_WVALID,S_WREADY;
36
+ logic [ADDRESS-1 : 0] M_ARADDR;
37
+ logic [ADDRESS-1 : 0] M_AWADDR;
38
+ logic [DATA_WIDTH-1:0]M_WDATA;
39
+ logic [DATA_WIDTH-1:0]S_RDATA;
40
+ logic [3:0]M_WSTRB;
41
+ logic [1:0]S_RRESP,S_BRESP;
42
+
43
+ axi4_lite_master u_axi4_lite_master0
44
+ (
45
+ .ACLK(ACLK),
46
+ .ARESETN(ARESETN),
47
+ .START_READ(read_s),
48
+ .address(address),
49
+ .W_data(W_data),
50
+ .M_ARREADY(M_ARREADY),
51
+ .M_RDATA(S_RDATA),
52
+ .M_RRESP(S_RRESP),
53
+ .M_RVALID(S_RVALID),
54
+ .M_ARADDR(M_ARADDR),
55
+ .M_ARVALID(M_ARVALID),
56
+ .M_RREADY(M_RREADY),
57
+ .START_WRITE(write_s),
58
+ .M_AWREADY(S_AWREADY),
59
+ .M_WVALID(M_WVALID),
60
+ .M_WREADY(S_WREADY),
61
+ .M_BRESP(S_BRESP),
62
+ .M_BVALID(S_BVALID),
63
+ .M_AWADDR(M_AWADDR),
64
+ .M_AWVALID(M_AWVALID),
65
+ .M_WDATA(M_WDATA),
66
+ .M_WSTRB(M_WSTRB),
67
+ .M_BREADY(M_BREADY)
68
+ );
69
+
70
+ axi4_lite_slave u_axi4_lite_slave0
71
+ (
72
+ .ACLK(ACLK),
73
+ .ARESETN(ARESETN),
74
+ .S_ARREADY(M_ARREADY),
75
+ .S_RDATA(S_RDATA),
76
+ .S_RRESP(S_RRESP),
77
+ .S_RVALID(S_RVALID),
78
+ .S_ARADDR(M_ARADDR),
79
+ .S_ARVALID(M_ARVALID),
80
+ .S_RREADY(M_RREADY),
81
+ .S_AWREADY(S_AWREADY),
82
+ .S_WVALID(M_WVALID),
83
+ .S_WREADY(S_WREADY),
84
+ .S_BRESP(S_BRESP),
85
+ .S_BVALID(S_BVALID),
86
+ .S_AWADDR(M_AWADDR),
87
+ .S_AWVALID(M_AWVALID),
88
+ .S_WDATA(M_WDATA),
89
+ .S_WSTRB(M_WSTRB),
90
+ .S_BREADY(M_BREADY)
91
+ );
92
+ endmodule
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/Axi4-lite-vivado.xpr ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Product Version: Vivado v2018.2 (64-bit) -->
3
+ <!-- -->
4
+ <!-- Copyright 1986-2018 Xilinx, Inc. All Rights Reserved. -->
5
+
6
+ <Project Version="7" Minor="38" Path="E:/projects/Axi4-lite-vivado/Axi4-lite-vivado.xpr">
7
+ <DefaultLaunch Dir="$PRUNDIR"/>
8
+ <Configuration>
9
+ <Option Name="Id" Val="21efe0d2eda443e9bd204aa321f74156"/>
10
+ <Option Name="Part" Val="xc7vx485tffg1157-1"/>
11
+ <Option Name="CompiledLibDir" Val="$PCACHEDIR/compile_simlib"/>
12
+ <Option Name="CompiledLibDirXSim" Val=""/>
13
+ <Option Name="CompiledLibDirModelSim" Val="$PCACHEDIR/compile_simlib/modelsim"/>
14
+ <Option Name="CompiledLibDirQuesta" Val="$PCACHEDIR/compile_simlib/questa"/>
15
+ <Option Name="CompiledLibDirIES" Val="$PCACHEDIR/compile_simlib/ies"/>
16
+ <Option Name="CompiledLibDirXcelium" Val="$PCACHEDIR/compile_simlib/xcelium"/>
17
+ <Option Name="CompiledLibDirVCS" Val="$PCACHEDIR/compile_simlib/vcs"/>
18
+ <Option Name="CompiledLibDirRiviera" Val="$PCACHEDIR/compile_simlib/riviera"/>
19
+ <Option Name="CompiledLibDirActivehdl" Val="$PCACHEDIR/compile_simlib/activehdl"/>
20
+ <Option Name="BoardPart" Val=""/>
21
+ <Option Name="ActiveSimSet" Val="sim_1"/>
22
+ <Option Name="DefaultLib" Val="xil_defaultlib"/>
23
+ <Option Name="ProjectType" Val="Default"/>
24
+ <Option Name="IPOutputRepo" Val="$PCACHEDIR/ip"/>
25
+ <Option Name="IPCachePermission" Val="read"/>
26
+ <Option Name="IPCachePermission" Val="write"/>
27
+ <Option Name="EnableCoreContainer" Val="FALSE"/>
28
+ <Option Name="CreateRefXciForCoreContainers" Val="FALSE"/>
29
+ <Option Name="IPUserFilesDir" Val="$PIPUSERFILESDIR"/>
30
+ <Option Name="IPStaticSourceDir" Val="$PIPUSERFILESDIR/ipstatic"/>
31
+ <Option Name="EnableBDX" Val="FALSE"/>
32
+ <Option Name="DSAVendor" Val="xilinx"/>
33
+ <Option Name="DSANumComputeUnits" Val="60"/>
34
+ <Option Name="WTXSimLaunchSim" Val="3"/>
35
+ <Option Name="WTModelSimLaunchSim" Val="0"/>
36
+ <Option Name="WTQuestaLaunchSim" Val="0"/>
37
+ <Option Name="WTIesLaunchSim" Val="0"/>
38
+ <Option Name="WTVcsLaunchSim" Val="0"/>
39
+ <Option Name="WTRivieraLaunchSim" Val="0"/>
40
+ <Option Name="WTActivehdlLaunchSim" Val="0"/>
41
+ <Option Name="WTXSimExportSim" Val="0"/>
42
+ <Option Name="WTModelSimExportSim" Val="0"/>
43
+ <Option Name="WTQuestaExportSim" Val="0"/>
44
+ <Option Name="WTIesExportSim" Val="0"/>
45
+ <Option Name="WTVcsExportSim" Val="0"/>
46
+ <Option Name="WTRivieraExportSim" Val="0"/>
47
+ <Option Name="WTActivehdlExportSim" Val="0"/>
48
+ <Option Name="GenerateIPUpgradeLog" Val="TRUE"/>
49
+ <Option Name="XSimRadix" Val="hex"/>
50
+ <Option Name="XSimTimeUnit" Val="ns"/>
51
+ <Option Name="XSimArrayDisplayLimit" Val="1024"/>
52
+ <Option Name="XSimTraceLimit" Val="65536"/>
53
+ <Option Name="SimTypes" Val="rtl"/>
54
+ <Option Name="SimTypes" Val="bfm"/>
55
+ <Option Name="SimTypes" Val="tlm"/>
56
+ <Option Name="SimTypes" Val="tlm_dpi"/>
57
+ <Option Name="MEMEnableMemoryMapGeneration" Val="TRUE"/>
58
+ </Configuration>
59
+ <FileSets Version="1" Minor="31">
60
+ <FileSet Name="sources_1" Type="DesignSrcs" RelSrcDir="$PSRCDIR/sources_1">
61
+ <Filter Type="Srcs"/>
62
+ <File Path="$PSRCDIR/sources_1/new/axi4_lite_master.sv">
63
+ <FileInfo>
64
+ <Attr Name="UsedIn" Val="synthesis"/>
65
+ <Attr Name="UsedIn" Val="implementation"/>
66
+ <Attr Name="UsedIn" Val="simulation"/>
67
+ </FileInfo>
68
+ </File>
69
+ <File Path="$PSRCDIR/sources_1/new/axi4_lite_slave.sv">
70
+ <FileInfo>
71
+ <Attr Name="UsedIn" Val="synthesis"/>
72
+ <Attr Name="UsedIn" Val="implementation"/>
73
+ <Attr Name="UsedIn" Val="simulation"/>
74
+ </FileInfo>
75
+ </File>
76
+ <File Path="$PSRCDIR/sources_1/new/axi4_lite_top.sv">
77
+ <FileInfo>
78
+ <Attr Name="UsedIn" Val="synthesis"/>
79
+ <Attr Name="UsedIn" Val="implementation"/>
80
+ <Attr Name="UsedIn" Val="simulation"/>
81
+ </FileInfo>
82
+ </File>
83
+ <Config>
84
+ <Option Name="DesignMode" Val="RTL"/>
85
+ <Option Name="TopModule" Val="axi4_lite_top"/>
86
+ </Config>
87
+ </FileSet>
88
+ <FileSet Name="constrs_1" Type="Constrs" RelSrcDir="$PSRCDIR/constrs_1">
89
+ <Filter Type="Constrs"/>
90
+ <Config>
91
+ <Option Name="ConstrsType" Val="XDC"/>
92
+ </Config>
93
+ </FileSet>
94
+ <FileSet Name="sim_1" Type="SimulationSrcs" RelSrcDir="$PSRCDIR/sim_1">
95
+ <File Path="$PSRCDIR/sim_1/new/axi4_lite_top_tb.sv">
96
+ <FileInfo>
97
+ <Attr Name="UsedIn" Val="synthesis"/>
98
+ <Attr Name="UsedIn" Val="implementation"/>
99
+ <Attr Name="UsedIn" Val="simulation"/>
100
+ </FileInfo>
101
+ </File>
102
+ <File Path="$PPRDIR/waveform.wcfg">
103
+ <FileInfo>
104
+ <Attr Name="UsedIn" Val="simulation"/>
105
+ </FileInfo>
106
+ </File>
107
+ <Config>
108
+ <Option Name="DesignMode" Val="RTL"/>
109
+ <Option Name="TopModule" Val="axi4_lite_top_tb"/>
110
+ <Option Name="TopLib" Val="xil_defaultlib"/>
111
+ <Option Name="TopAutoSet" Val="TRUE"/>
112
+ <Option Name="TransportPathDelay" Val="0"/>
113
+ <Option Name="TransportIntDelay" Val="0"/>
114
+ <Option Name="SrcSet" Val="sources_1"/>
115
+ <Option Name="XSimWcfgFile" Val="$PPRDIR/waveform.wcfg"/>
116
+ </Config>
117
+ </FileSet>
118
+ </FileSets>
119
+ <Simulators>
120
+ <Simulator Name="XSim">
121
+ <Option Name="Description" Val="Vivado Simulator"/>
122
+ <Option Name="CompiledLib" Val="0"/>
123
+ </Simulator>
124
+ <Simulator Name="ModelSim">
125
+ <Option Name="Description" Val="ModelSim Simulator"/>
126
+ </Simulator>
127
+ <Simulator Name="Questa">
128
+ <Option Name="Description" Val="Questa Advanced Simulator"/>
129
+ </Simulator>
130
+ <Simulator Name="Riviera">
131
+ <Option Name="Description" Val="Riviera-PRO Simulator"/>
132
+ </Simulator>
133
+ <Simulator Name="ActiveHDL">
134
+ <Option Name="Description" Val="Active-HDL Simulator"/>
135
+ </Simulator>
136
+ </Simulators>
137
+ <Runs Version="1" Minor="10">
138
+ <Run Id="synth_1" Type="Ft3:Synth" SrcSet="sources_1" Part="xc7vx485tffg1157-1" ConstrsSet="constrs_1" Description="Vivado Synthesis Defaults" WriteIncrSynthDcp="false" State="current" IncludeInArchive="true">
139
+ <Strategy Version="1" Minor="2">
140
+ <StratHandle Name="Vivado Synthesis Defaults" Flow="Vivado Synthesis 2018">
141
+ <Desc>Vivado Synthesis Defaults</Desc>
142
+ </StratHandle>
143
+ <Step Id="synth_design"/>
144
+ </Strategy>
145
+ <ReportStrategy Name="Vivado Synthesis Default Reports" Flow="Vivado Synthesis 2018"/>
146
+ <Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
147
+ </Run>
148
+ <Run Id="impl_1" Type="Ft2:EntireDesign" Part="xc7vx485tffg1157-1" ConstrsSet="constrs_1" Description="Default settings for Implementation." WriteIncrSynthDcp="false" State="current" SynthRun="synth_1" IncludeInArchive="true" GenFullBitstream="true">
149
+ <Strategy Version="1" Minor="2">
150
+ <StratHandle Name="Vivado Implementation Defaults" Flow="Vivado Implementation 2018">
151
+ <Desc>Default settings for Implementation.</Desc>
152
+ </StratHandle>
153
+ <Step Id="init_design"/>
154
+ <Step Id="opt_design"/>
155
+ <Step Id="power_opt_design"/>
156
+ <Step Id="place_design"/>
157
+ <Step Id="post_place_power_opt_design"/>
158
+ <Step Id="phys_opt_design"/>
159
+ <Step Id="route_design"/>
160
+ <Step Id="post_route_phys_opt_design"/>
161
+ <Step Id="write_bitstream"/>
162
+ </Strategy>
163
+ <ReportStrategy Name="Vivado Implementation Default Reports" Flow="Vivado Implementation 2018"/>
164
+ <Report Name="ROUTE_DESIGN.REPORT_METHODOLOGY" Enabled="1"/>
165
+ </Run>
166
+ </Runs>
167
+ <Board/>
168
+ </Project>
arhamhashmi01_Axi4-lite/source/Axi4-lite-vivado/waveform.wcfg ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <wave_config>
3
+ <wave_state>
4
+ </wave_state>
5
+ <db_ref_list>
6
+ <db_ref path="axi4_lite_top_tb_behav.wdb" id="1">
7
+ <top_modules>
8
+ <top_module name="axi4_lite_top_tb" />
9
+ <top_module name="glbl" />
10
+ </top_modules>
11
+ </db_ref>
12
+ </db_ref_list>
13
+ <zoom_setting>
14
+ <ZoomStartTime time="0fs"></ZoomStartTime>
15
+ <ZoomEndTime time="135000001fs"></ZoomEndTime>
16
+ <Cursor1Time time="135000000fs"></Cursor1Time>
17
+ </zoom_setting>
18
+ <column_width_setting>
19
+ <NameColumnWidth column_width="175"></NameColumnWidth>
20
+ <ValueColumnWidth column_width="91"></ValueColumnWidth>
21
+ </column_width_setting>
22
+ <WVObjectSize size="22" />
23
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/ACLK" type="logic">
24
+ <obj_property name="ElementShortName">ACLK</obj_property>
25
+ <obj_property name="ObjectShortName">ACLK</obj_property>
26
+ </wvobject>
27
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/ARESETN" type="logic">
28
+ <obj_property name="ElementShortName">ARESETN</obj_property>
29
+ <obj_property name="ObjectShortName">ARESETN</obj_property>
30
+ </wvobject>
31
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/read_s" type="logic">
32
+ <obj_property name="ElementShortName">read_s</obj_property>
33
+ <obj_property name="ObjectShortName">read_s</obj_property>
34
+ </wvobject>
35
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/write_s" type="logic">
36
+ <obj_property name="ElementShortName">write_s</obj_property>
37
+ <obj_property name="ObjectShortName">write_s</obj_property>
38
+ </wvobject>
39
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/state" type="array">
40
+ <obj_property name="ElementShortName">state[2:0]</obj_property>
41
+ <obj_property name="ObjectShortName">state[2:0]</obj_property>
42
+ </wvobject>
43
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_AWADDR" type="array">
44
+ <obj_property name="ElementShortName">M_AWADDR[31:0]</obj_property>
45
+ <obj_property name="ObjectShortName">M_AWADDR[31:0]</obj_property>
46
+ </wvobject>
47
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_AWVALID" type="logic">
48
+ <obj_property name="ElementShortName">M_AWVALID</obj_property>
49
+ <obj_property name="ObjectShortName">M_AWVALID</obj_property>
50
+ </wvobject>
51
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_AWREADY" type="logic">
52
+ <obj_property name="ElementShortName">S_AWREADY</obj_property>
53
+ <obj_property name="ObjectShortName">S_AWREADY</obj_property>
54
+ </wvobject>
55
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_WDATA" type="array">
56
+ <obj_property name="ElementShortName">M_WDATA[31:0]</obj_property>
57
+ <obj_property name="ObjectShortName">M_WDATA[31:0]</obj_property>
58
+ </wvobject>
59
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_WVALID" type="logic">
60
+ <obj_property name="ElementShortName">M_WVALID</obj_property>
61
+ <obj_property name="ObjectShortName">M_WVALID</obj_property>
62
+ </wvobject>
63
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_WSTRB" type="array">
64
+ <obj_property name="ElementShortName">M_WSTRB[3:0]</obj_property>
65
+ <obj_property name="ObjectShortName">M_WSTRB[3:0]</obj_property>
66
+ </wvobject>
67
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_WREADY" type="logic">
68
+ <obj_property name="ElementShortName">S_WREADY</obj_property>
69
+ <obj_property name="ObjectShortName">S_WREADY</obj_property>
70
+ </wvobject>
71
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_BRESP" type="array">
72
+ <obj_property name="ElementShortName">S_BRESP[1:0]</obj_property>
73
+ <obj_property name="ObjectShortName">S_BRESP[1:0]</obj_property>
74
+ </wvobject>
75
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_BVALID" type="logic">
76
+ <obj_property name="ElementShortName">S_BVALID</obj_property>
77
+ <obj_property name="ObjectShortName">S_BVALID</obj_property>
78
+ </wvobject>
79
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_BREADY" type="logic">
80
+ <obj_property name="ElementShortName">M_BREADY</obj_property>
81
+ <obj_property name="ObjectShortName">M_BREADY</obj_property>
82
+ </wvobject>
83
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_ARADDR" type="array">
84
+ <obj_property name="ElementShortName">M_ARADDR[31:0]</obj_property>
85
+ <obj_property name="ObjectShortName">M_ARADDR[31:0]</obj_property>
86
+ </wvobject>
87
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_ARVALID" type="logic">
88
+ <obj_property name="ElementShortName">M_ARVALID</obj_property>
89
+ <obj_property name="ObjectShortName">M_ARVALID</obj_property>
90
+ </wvobject>
91
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_ARREADY" type="logic">
92
+ <obj_property name="ElementShortName">M_ARREADY</obj_property>
93
+ <obj_property name="ObjectShortName">M_ARREADY</obj_property>
94
+ </wvobject>
95
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_master0/M_RREADY" type="logic">
96
+ <obj_property name="ElementShortName">M_RREADY</obj_property>
97
+ <obj_property name="ObjectShortName">M_RREADY</obj_property>
98
+ </wvobject>
99
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_RDATA" type="array">
100
+ <obj_property name="ElementShortName">S_RDATA[31:0]</obj_property>
101
+ <obj_property name="ObjectShortName">S_RDATA[31:0]</obj_property>
102
+ </wvobject>
103
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_RVALID" type="logic">
104
+ <obj_property name="ElementShortName">S_RVALID</obj_property>
105
+ <obj_property name="ObjectShortName">S_RVALID</obj_property>
106
+ </wvobject>
107
+ <wvobject fp_name="/axi4_lite_top_tb/u_axi4_lite_top0/u_axi4_lite_slave0/S_RRESP" type="array">
108
+ <obj_property name="ElementShortName">S_RRESP[1:0]</obj_property>
109
+ <obj_property name="ObjectShortName">S_RRESP[1:0]</obj_property>
110
+ </wvobject>
111
+ </wave_config>
arhamhashmi01_Axi4-lite/source/README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AXI4-Lite Interface
2
+ ## Introduction to AXI4-Lite
3
+ Advanced eXtensible Interface 4 (AXI4) is a family of buses defined as part of the fourth generation of the ARM Advanced Microcontroler Bus Architectrue (AMBA) standard. AXI was first introduced with the third generation of AMBA, as AXI3, in 1996.
4
+
5
+ **The AMBA specification defines 3 AXI4 protocols:**
6
+
7
+ **AXI4:** A high performance memory mapped data and address interface. Capable of Burst access to memory mapped devices.
8
+
9
+ **AXI4-Lite:** A subset of AXI, lacking burst access capability. Has a simpler interface than the full AXI4 interface.
10
+
11
+ **AXI4-Stream:** A fast unidirectional protocol for transfering data from master to slave.
12
+
13
+ **Use in Xilinx-Based designs**
14
+
15
+ Xilinx Vivado helps in the creation of custom IP with AXI4 interfaces. These can be connected to the Zynq’s Proccessing System or to other devices. This Document will cover the operation of the AXI4-Lite interface, which is convenient for implementing memory mapped registers.
16
+
17
+ **AXI4-Lite Interface Signals**
18
+
19
+ The AXI4-Lite interface consists of five channels: Read Address, Read Data, Write Address, Write Data, and Write Response. An AXI4 read transaction using the Read Address and Data channels is shown in figure 1. Similarly an AXI4 write transaction using the Write Address, Data, and Response channels is shown in figure 2. Note that these figures depict burst transfers, which AXI4-Lite is incapable of.
20
+ <img src="https://github.com/arhamhashmi01/Axi4-lite/blob/main/block-diagram.png" alt="block diagram of axi4-lite transaction">
21
+
22
+ ### Clock and Reset
23
+ Any AXI component has two global signals: the clock ACLK and an active-low asynchronous reset ARESETN. All AXI4 signals are sampled on the rising edge of the clock and all signal changes must occur aftert the rising edge.
24
+
25
+ ### Handshake Process
26
+ All five transaction channels use the same VALID/READY handshake process to transfer address, data, and control information. This two-way flow control machanism means both the master and slave can control the rate at which the information moves between master and slave. The information source generates the VALID signal to indicate when the address, data or control information is available. The information destination generates the READY signal to indicate that it can accept the information. The handshake completes if both VALID and READY signals in a channel are asserted during a rising clock edge.
27
+
28
+ ## AXI4-Lite Read Transaction
29
+ Below, the sequence for an AXI4-Lite read is shown:
30
+
31
+ A description of the events in figure 3 follows:
32
+
33
+ The Master puts an address on the Read Address channel as well as asserting ARVALID,indicating the address is valid, and RREADY, indicating the master is ready to receive data from the slave.
34
+ The Slave asserts ARREADY, indicating that it is ready to receive the address on the bus.
35
+ Since both ARVALID and ARREADY are asserted, on the next rising clock edge the handshake occurs, after this the master and slave deassert ARVALID and the ARREADY, respectively. (At this point, the slave has received the requested address).
36
+ The Slave puts the requested data on the Read Data channel and asserts RVALID, indicating the data in the channel is valid. The slave can also put a response on RRESP, though this does not occur here.
37
+ Since both RREADY and RVALID are asserted, the next rising clock edge completes the transaction. RREADY and RVALID can now be deasserted.
38
+
39
+ ## AXI4-Lite Write Transaction
40
+ Below, the sequence for an AXI4-Lite write is shown:
41
+
42
+ A description of the events in figure 4 follows:
43
+
44
+ The Master puts an address on the Write Address channel and data on the Write data channel. At the same time it asserts AWVALID and WVALID indicating the address and data on the respective channels is valid. BREADY is also asserted by the Master, indicating it is ready to receive a response.
45
+ The Slave asserts AWREADY and WREADY on the Write Address and Write Data channels, respectively.
46
+ Since Valid and Ready signals are present on both the Write Address and Write Data channels, the handshakes on those channels occur and the associated Valid and Ready signals can be deasserted. (After both handshakes occur, the slave has the write address and data)
47
+ The Slave asserts BVALID, indicating there is a valid reponse on the Write response channel. (in this case the response is 2’b00, that being ‘OKAY’).
48
+ The next rising clock edge completes the transaction, with both the Ready and Valid signals on the write response channel high.
49
+
50
+ ### RTL-View Of AXI4_Lite
51
+ <img src="https://github.com/arhamhashmi01/Axi4-lite/blob/main/rtl_view.jpg" alt="axi4-lite rtl">
52
+
53
+ ### GTKWAVE
54
+ **Simulation using Vivado**
55
+ <img src="https://github.com/arhamhashmi01/Axi4-lite/blob/main/gtkwave.png" alt="axi4-lite gtkwave">
56
+
57
+ ## Getting Started
58
+
59
+ To begin exploring the AXI4-Lite interface protocol:
60
+
61
+ **1)** Clone this repository to your local machine:
62
+
63
+ git clone https://github.com/arhamhashmi01/Axi4-lite.git
64
+
65
+ **2)** Navigate to the project directory:
66
+
67
+ cd Axi4-lite
68
+
69
+ **3)** **For Verilaor:**
70
+ Run make -> then
71
+ make wave
72
+
73
+ **4)** **For Vivado:** You can directly get access by the folder by opning it on vivado
74
+
75
+ **4)** Refer to the documentation provided in the repository to build, simulate, or test the processor implementation.
76
+
77
+ **5)** Experiment with the design, explore optimizations, or integrate additional features to further enhance the processor's capabilities.
78
+
79
+ ## Contribution
80
+ Contributions to this project are highly encouraged and appreciated! Whether it's bug fixes, feature enhancements, or optimizations, your contributions can help improve the overall quality and functionality of the AXI4-Lite interface protocol.
arhamhashmi01_Axi4-lite/testbenches.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "file_path": "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv",
4
+ "tb_type": "verilog",
5
+ "simulator": "icarus",
6
+ "makefile_path": null,
7
+ "top_module": "axi4_lite_top",
8
+ "rtl_files": [
9
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv",
10
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv",
11
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv"
12
+ ]
13
+ }
14
+ ]
arhamhashmi01_Axi4-lite/waveform_map.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv": "wave_axi4_lite_top.fst"
3
+ }
completed.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "version": 2,
3
- "generated_at": "2026-04-06T01:07:53.135451+00:00",
4
  "entries": {
5
  "chili-chips-ba_wireguard-fpga/led_test__led_test/blocking_nonblocking": {
6
  "status": "sim_ok",
@@ -942,7 +942,7 @@
942
  "status": "waveform_identical"
943
  },
944
  "JN513_Risco-5/ClkDivider__clk_divider/missing_enable": {
945
- "status": "sim_ok"
946
  },
947
  "JN513_Risco-5/ClkDivider__clk_divider/missing_reset": {
948
  "status": "waveform_identical"
@@ -954,16 +954,16 @@
954
  "status": "waveform_identical"
955
  },
956
  "JN513_Risco-5/Core__alu/case_swap": {
957
- "status": "waveform_identical"
958
  },
959
  "JN513_Risco-5/Core__alu/operator_typo": {
960
  "status": "sim_failed"
961
  },
962
  "JN513_Risco-5/Core__alu_control/case_swap": {
963
- "status": "waveform_identical"
964
  },
965
  "JN513_Risco-5/Core__alu_control/inverted_condition": {
966
- "status": "waveform_identical"
967
  },
968
  "JN513_Risco-5/Core__alu_control/operator_typo": {
969
  "status": "sim_failed"
@@ -972,16 +972,16 @@
972
  "status": "sim_failed"
973
  },
974
  "JN513_Risco-5/Core__control_unit/case_swap": {
975
- "status": "waveform_identical"
976
  },
977
  "JN513_Risco-5/Core__control_unit/inverted_condition": {
978
- "status": "waveform_identical"
979
  },
980
  "JN513_Risco-5/Core__control_unit/missing_enable": {
981
  "status": "sim_failed"
982
  },
983
  "JN513_Risco-5/Core__control_unit/missing_reset": {
984
- "status": "waveform_identical"
985
  },
986
  "JN513_Risco-5/Core__control_unit/operator_typo": {
987
  "status": "sim_failed"
@@ -993,13 +993,13 @@
993
  "status": "sim_failed"
994
  },
995
  "JN513_Risco-5/Core__core/inverted_condition": {
996
- "status": "sim_ok"
997
  },
998
  "JN513_Risco-5/Core__core/missing_enable": {
999
- "status": "sim_ok"
1000
  },
1001
  "JN513_Risco-5/Core__core/missing_reset": {
1002
- "status": "waveform_identical"
1003
  },
1004
  "JN513_Risco-5/Core__core/operator_typo": {
1005
  "status": "sim_failed"
@@ -1011,19 +1011,19 @@
1011
  "status": "sim_failed"
1012
  },
1013
  "JN513_Risco-5/Core__csr_unit/case_swap": {
1014
- "status": "waveform_identical"
1015
  },
1016
  "JN513_Risco-5/Core__csr_unit/concat_swap": {
1017
- "status": "waveform_identical"
1018
  },
1019
  "JN513_Risco-5/Core__csr_unit/inverted_condition": {
1020
- "status": "waveform_identical"
1021
  },
1022
  "JN513_Risco-5/Core__csr_unit/missing_enable": {
1023
- "status": "waveform_identical"
1024
  },
1025
  "JN513_Risco-5/Core__csr_unit/missing_reset": {
1026
- "status": "waveform_identical"
1027
  },
1028
  "JN513_Risco-5/Core__csr_unit/operator_typo": {
1029
  "status": "sim_failed"
@@ -1032,16 +1032,16 @@
1032
  "status": "sim_failed"
1033
  },
1034
  "JN513_Risco-5/Core__immediate_generator/case_swap": {
1035
- "status": "waveform_identical"
1036
  },
1037
  "JN513_Risco-5/Core__immediate_generator/concat_swap": {
1038
- "status": "waveform_identical"
1039
  },
1040
  "JN513_Risco-5/Core__leds/missing_enable": {
1041
- "status": "waveform_identical"
1042
  },
1043
  "JN513_Risco-5/Core__leds/missing_reset": {
1044
- "status": "waveform_identical"
1045
  },
1046
  "JN513_Risco-5/Core__leds/operator_typo": {
1047
  "status": "sim_failed"
@@ -1050,13 +1050,13 @@
1050
  "status": "sim_failed"
1051
  },
1052
  "JN513_Risco-5/Core__mdu/inverted_condition": {
1053
- "status": "waveform_identical"
1054
  },
1055
  "JN513_Risco-5/Core__mdu/missing_enable": {
1056
- "status": "waveform_identical"
1057
  },
1058
  "JN513_Risco-5/Core__mdu/missing_reset": {
1059
- "status": "waveform_identical"
1060
  },
1061
  "JN513_Risco-5/Core__mdu/operator_typo": {
1062
  "status": "sim_failed"
@@ -1068,16 +1068,16 @@
1068
  "status": "sim_failed"
1069
  },
1070
  "JN513_Risco-5/Core__memory/case_swap": {
1071
- "status": "waveform_identical"
1072
  },
1073
  "JN513_Risco-5/Core__memory/concat_swap": {
1074
- "status": "waveform_identical"
1075
  },
1076
  "JN513_Risco-5/Core__memory/inverted_condition": {
1077
- "status": "waveform_identical"
1078
  },
1079
  "JN513_Risco-5/Core__memory/missing_enable": {
1080
- "status": "sim_ok"
1081
  },
1082
  "JN513_Risco-5/Core__memory/operator_typo": {
1083
  "status": "sim_failed"
@@ -1086,22 +1086,22 @@
1086
  "status": "sim_failed"
1087
  },
1088
  "JN513_Risco-5/Core__mux/case_swap": {
1089
- "status": "waveform_identical"
1090
  },
1091
  "JN513_Risco-5/Core__pc/missing_enable": {
1092
- "status": "waveform_identical"
1093
  },
1094
  "JN513_Risco-5/Core__pc/missing_reset": {
1095
- "status": "sim_ok"
1096
  },
1097
  "JN513_Risco-5/Core__pc/operator_typo": {
1098
  "status": "sim_failed"
1099
  },
1100
  "JN513_Risco-5/Core__registers/missing_enable": {
1101
- "status": "waveform_identical"
1102
  },
1103
  "JN513_Risco-5/Core__registers/missing_reset": {
1104
- "status": "waveform_identical"
1105
  },
1106
  "JN513_Risco-5/Core__registers/operator_typo": {
1107
  "status": "sim_failed"
@@ -1116,7 +1116,7 @@
1116
  "status": "waveform_identical"
1117
  },
1118
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Master/state_transition": {
1119
- "status": "sim_ok"
1120
  },
1121
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Slave/case_swap": {
1122
  "status": "waveform_identical"
@@ -1140,7 +1140,7 @@
1140
  "status": "waveform_identical"
1141
  },
1142
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Wrapper/unconnected_port": {
1143
- "status": "sim_ok"
1144
  },
1145
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__RAM/case_swap": {
1146
  "status": "sim_ok"
@@ -1158,7 +1158,7 @@
1158
  "status": "sim_ok"
1159
  },
1160
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__SPI_SLAVE/inverted_condition": {
1161
- "status": "sim_ok"
1162
  },
1163
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__SPI_SLAVE/missing_enable": {
1164
  "status": "sim_ok"
@@ -1230,7 +1230,7 @@
1230
  "status": "waveform_identical"
1231
  },
1232
  "Weiyet_RTLStructLib/dual_edge_ff__dual_edge_ff/inverted_condition": {
1233
- "status": "compile_error"
1234
  },
1235
  "Weiyet_RTLStructLib/dual_edge_ff__dual_edge_ff/missing_enable": {
1236
  "status": "sim_ok"
@@ -1245,7 +1245,7 @@
1245
  "status": "sim_ok"
1246
  },
1247
  "Weiyet_RTLStructLib/fifo__fifo/inverted_condition": {
1248
- "status": "compile_error"
1249
  },
1250
  "Weiyet_RTLStructLib/fifo__fifo/missing_enable": {
1251
  "status": "sim_ok"
@@ -1257,7 +1257,7 @@
1257
  "status": "sim_ok"
1258
  },
1259
  "Weiyet_RTLStructLib/hash_table__hash_table/inverted_condition": {
1260
- "status": "compile_error"
1261
  },
1262
  "Weiyet_RTLStructLib/hash_table__hash_table/missing_enable": {
1263
  "status": "sim_ok"
@@ -1305,7 +1305,7 @@
1305
  "status": "sim_ok"
1306
  },
1307
  "Weiyet_RTLStructLib/list__list/inverted_condition": {
1308
- "status": "compile_error"
1309
  },
1310
  "Weiyet_RTLStructLib/list__list/missing_enable": {
1311
  "status": "sim_ok"
@@ -1326,7 +1326,7 @@
1326
  "status": "sim_ok"
1327
  },
1328
  "Weiyet_RTLStructLib/list__sorter/inverted_condition": {
1329
- "status": "compile_error"
1330
  },
1331
  "Weiyet_RTLStructLib/list__sorter/missing_enable": {
1332
  "status": "sim_ok"
@@ -1341,7 +1341,7 @@
1341
  "status": "sim_ok"
1342
  },
1343
  "Weiyet_RTLStructLib/singly_linked_list__singly_linked_list/inverted_condition": {
1344
- "status": "compile_error"
1345
  },
1346
  "Weiyet_RTLStructLib/singly_linked_list__singly_linked_list/missing_enable": {
1347
  "status": "sim_ok"
@@ -1362,7 +1362,7 @@
1362
  "status": "waveform_identical"
1363
  },
1364
  "accomdemy_accomdemy_rv32i/cpu__alu/case_swap": {
1365
- "status": "waveform_identical"
1366
  },
1367
  "accomdemy_accomdemy_rv32i/cpu__alu/operator_typo": {
1368
  "status": "waveform_identical"
@@ -1371,7 +1371,7 @@
1371
  "status": "waveform_identical"
1372
  },
1373
  "accomdemy_accomdemy_rv32i/cpu__branch/missing_enable": {
1374
- "status": "waveform_identical"
1375
  },
1376
  "accomdemy_accomdemy_rv32i/cpu__branch/operator_typo": {
1377
  "status": "waveform_identical"
@@ -1404,19 +1404,19 @@
1404
  "status": "waveform_identical"
1405
  },
1406
  "accomdemy_accomdemy_rv32i/cpu__instr_memory/concat_swap": {
1407
- "status": "waveform_identical"
1408
  },
1409
  "accomdemy_accomdemy_rv32i/cpu__instr_memory/wrong_bitwidth": {
1410
- "status": "sim_ok"
1411
  },
1412
  "accomdemy_accomdemy_rv32i/cpu__pc/missing_enable": {
1413
  "status": "sim_ok"
1414
  },
1415
  "accomdemy_accomdemy_rv32i/cpu__pc/missing_reset": {
1416
- "status": "compile_error"
1417
  },
1418
  "accomdemy_accomdemy_rv32i/cpu__pc/operator_typo": {
1419
- "status": "waveform_identical"
1420
  },
1421
  "accomdemy_accomdemy_rv32i/cpu__regfile/inverted_condition": {
1422
  "status": "waveform_identical"
@@ -1431,160 +1431,160 @@
1431
  "status": "waveform_identical"
1432
  },
1433
  "aditeyabaral_DDCO-Lab-UE18CS207/alu__lib/operator_typo": {
1434
- "status": "sim_ok"
1435
  },
1436
  "aditeyabaral_DDCO-Lab-UE18CS207/fa4__lib/operator_typo": {
1437
- "status": "sim_ok"
1438
  },
1439
  "aditeyabaral_DDCO-Lab-UE18CS207/mproc_mem__lib/operator_typo": {
1440
- "status": "sim_ok"
1441
  },
1442
  "aditeyabaral_DDCO-Lab-UE18CS207/mproc_mem__mproc_mem/wrong_bitwidth": {
1443
- "status": "sim_ok"
1444
  },
1445
  "aditeyabaral_DDCO-Lab-UE18CS207/pc__lib/operator_typo": {
1446
- "status": "sim_ok"
1447
  },
1448
  "aditeyabaral_DDCO-Lab-UE18CS207/reg_alu__lib/operator_typo": {
1449
- "status": "sim_ok"
1450
  },
1451
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/case_swap": {
1452
- "status": "compile_error"
1453
  },
1454
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/concat_swap": {
1455
  "status": "waveform_identical"
1456
  },
1457
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/operator_typo": {
1458
- "status": "compile_error"
1459
  },
1460
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/wrong_bitwidth": {
1461
  "status": "waveform_identical"
1462
  },
1463
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU_Control/case_swap": {
1464
- "status": "compile_error"
1465
  },
1466
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BHT/missing_reset": {
1467
- "status": "compile_error"
1468
  },
1469
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BHT/operator_typo": {
1470
- "status": "compile_error"
1471
  },
1472
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BPU/case_swap": {
1473
- "status": "compile_error"
1474
  },
1475
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/missing_enable": {
1476
  "status": "sim_ok"
1477
  },
1478
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/missing_reset": {
1479
- "status": "compile_error"
1480
  },
1481
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/wrong_bitwidth": {
1482
  "status": "waveform_identical"
1483
  },
1484
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/case_swap": {
1485
- "status": "compile_error"
1486
  },
1487
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/missing_enable": {
1488
- "status": "compile_error"
1489
  },
1490
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/missing_reset": {
1491
- "status": "compile_error"
1492
  },
1493
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/operator_typo": {
1494
- "status": "compile_error"
1495
  },
1496
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/wrong_bitwidth": {
1497
  "status": "waveform_identical"
1498
  },
1499
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/case_swap": {
1500
- "status": "compile_error"
1501
  },
1502
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/inverted_condition": {
1503
- "status": "compile_error"
1504
  },
1505
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/operator_typo": {
1506
- "status": "compile_error"
1507
  },
1508
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/width_bit_cutoff": {
1509
  "status": "waveform_identical"
1510
  },
1511
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/concat_swap": {
1512
- "status": "compile_error"
1513
  },
1514
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/inverted_condition": {
1515
- "status": "compile_error"
1516
  },
1517
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/missing_enable": {
1518
- "status": "compile_error"
1519
  },
1520
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/wrong_bitwidth": {
1521
  "status": "sim_ok"
1522
  },
1523
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__EX_MEM/missing_reset": {
1524
- "status": "compile_error"
1525
  },
1526
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Forwarding_Unit/inverted_condition": {
1527
- "status": "compile_error"
1528
  },
1529
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Forwarding_Unit/operator_typo": {
1530
- "status": "compile_error"
1531
  },
1532
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Hazard_Unit/operator_typo": {
1533
- "status": "compile_error"
1534
  },
1535
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ID_EX/missing_reset": {
1536
- "status": "compile_error"
1537
  },
1538
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__IF_ID/missing_enable": {
1539
- "status": "compile_error"
1540
  },
1541
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__IF_ID/missing_reset": {
1542
- "status": "compile_error"
1543
  },
1544
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__I_Mem/concat_swap": {
1545
- "status": "compile_error"
1546
  },
1547
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__I_Mem/wrong_bitwidth": {
1548
  "status": "sim_ok"
1549
  },
1550
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ImmGen/case_swap": {
1551
- "status": "compile_error"
1552
  },
1553
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ImmGen/concat_swap": {
1554
- "status": "compile_error"
1555
  },
1556
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__LDU/case_swap": {
1557
- "status": "compile_error"
1558
  },
1559
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__LDU/concat_swap": {
1560
  "status": "waveform_identical"
1561
  },
1562
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__MEM_WB/missing_reset": {
1563
- "status": "compile_error"
1564
  },
1565
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC/case_swap": {
1566
- "status": "compile_error"
1567
  },
1568
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC/missing_reset": {
1569
- "status": "compile_error"
1570
  },
1571
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC_Adderr/missing_enable": {
1572
- "status": "compile_error"
1573
  },
1574
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/missing_enable": {
1575
- "status": "compile_error"
1576
  },
1577
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/missing_reset": {
1578
- "status": "compile_error"
1579
  },
1580
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/operator_typo": {
1581
- "status": "compile_error"
1582
  },
1583
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/wrong_bitwidth": {
1584
  "status": "sim_ok"
1585
  },
1586
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RISCV_CPU/operator_typo": {
1587
- "status": "compile_error"
1588
  },
1589
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RISCV_CPU/unconnected_port": {
1590
  "status": "sim_ok"
@@ -1596,28 +1596,28 @@
1596
  "status": "sim_ok"
1597
  },
1598
  "apfaudio_eurorack-pmod/ak4619__ak4619/concat_swap": {
1599
- "status": "compile_error"
1600
  },
1601
  "apfaudio_eurorack-pmod/ak4619__ak4619/delayed_signal": {
1602
  "status": "sim_ok"
1603
  },
1604
  "apfaudio_eurorack-pmod/ak4619__ak4619/inverted_condition": {
1605
- "status": "compile_error"
1606
  },
1607
  "apfaudio_eurorack-pmod/ak4619__ak4619/missing_enable": {
1608
- "status": "compile_error"
1609
  },
1610
  "apfaudio_eurorack-pmod/ak4619__ak4619/missing_reset": {
1611
  "status": "sim_ok"
1612
  },
1613
  "apfaudio_eurorack-pmod/ak4619__ak4619/off_by_one_counter": {
1614
- "status": "compile_error"
1615
  },
1616
  "apfaudio_eurorack-pmod/ak4619__ak4619/operator_typo": {
1617
  "status": "sim_ok"
1618
  },
1619
  "apfaudio_eurorack-pmod/ak4619__ak4619/wrong_bitwidth": {
1620
- "status": "compile_error"
1621
  },
1622
  "apfaudio_eurorack-pmod/pmod_i2c_master__pmod_i2c_master/case_swap": {
1623
  "status": "llm_failed"
@@ -1656,19 +1656,19 @@
1656
  "status": "sim_ok"
1657
  },
1658
  "apfaudio_eurorack-pmod/transpose__delayline/wrong_bitwidth": {
1659
- "status": "compile_error"
1660
  },
1661
  "apfaudio_eurorack-pmod/transpose__transpose/delayed_signal": {
1662
  "status": "sim_ok"
1663
  },
1664
  "apfaudio_eurorack-pmod/transpose__transpose/inverted_condition": {
1665
- "status": "compile_error"
1666
  },
1667
  "apfaudio_eurorack-pmod/transpose__transpose/missing_enable": {
1668
- "status": "compile_error"
1669
  },
1670
  "apfaudio_eurorack-pmod/transpose__transpose/off_by_one_counter": {
1671
- "status": "compile_error"
1672
  },
1673
  "apfaudio_eurorack-pmod/transpose__transpose/operator_typo": {
1674
  "status": "sim_ok"
@@ -1797,13 +1797,13 @@
1797
  "status": "timeout"
1798
  },
1799
  "defano_digital-design/uart__uart/operator_typo": {
1800
- "status": "llm_failed"
1801
  },
1802
  "defano_digital-design/uart__uart/unconnected_port": {
1803
  "status": "sim_ok"
1804
  },
1805
  "defano_digital-design/uart__uart/wrong_bitwidth": {
1806
- "status": "llm_failed"
1807
  },
1808
  "meiniKi_RV32I_SC_Logisim/mcu__d_ledbar/inverted_condition": {
1809
  "status": "waveform_identical"
@@ -1929,7 +1929,7 @@
1929
  "status": "sim_ok"
1930
  },
1931
  "mnmhdanas_Router-1-x-3-/router_fifo__router_fifo/missing_reset": {
1932
- "status": "timeout"
1933
  },
1934
  "mnmhdanas_Router-1-x-3-/router_fifo__router_fifo/operator_typo": {
1935
  "status": "waveform_identical"
@@ -1947,10 +1947,10 @@
1947
  "status": "waveform_identical"
1948
  },
1949
  "mnmhdanas_Router-1-x-3-/router_fsm__router_fsm/state_transition": {
1950
- "status": "sim_ok"
1951
  },
1952
  "mnmhdanas_Router-1-x-3-/router_reg__router_reg/inverted_condition": {
1953
- "status": "sim_ok"
1954
  },
1955
  "mnmhdanas_Router-1-x-3-/router_reg__router_reg/missing_enable": {
1956
  "status": "waveform_identical"
@@ -1986,7 +1986,7 @@
1986
  "status": "sim_ok"
1987
  },
1988
  "nimanaqavi_Verilog-MathFunctions/part_Ln_TOP__Ln_CO/missing_reset": {
1989
- "status": "sim_ok"
1990
  },
1991
  "nimanaqavi_Verilog-MathFunctions/part_Ln_TOP__Ln_CO/state_transition": {
1992
  "status": "sim_ok"
@@ -2361,7 +2361,7 @@
2361
  "status": "sim_ok"
2362
  },
2363
  "thedatabusdotio_fpga-ml-accelerator/acclerator__accelerator/unconnected_port": {
2364
- "status": "sim_ok"
2365
  },
2366
  "thedatabusdotio_fpga-ml-accelerator/acclerator__comparator2/concat_swap": {
2367
  "status": "waveform_identical"
@@ -2397,7 +2397,7 @@
2397
  "status": "waveform_identical"
2398
  },
2399
  "thedatabusdotio_fpga-ml-accelerator/acclerator__convolver/missing_reset": {
2400
- "status": "timeout"
2401
  },
2402
  "thedatabusdotio_fpga-ml-accelerator/acclerator__convolver/operator_typo": {
2403
  "status": "waveform_identical"
@@ -2415,13 +2415,13 @@
2415
  "status": "waveform_identical"
2416
  },
2417
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/missing_reset": {
2418
- "status": "sim_ok"
2419
  },
2420
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/operator_typo": {
2421
  "status": "waveform_identical"
2422
  },
2423
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/unconnected_port": {
2424
- "status": "sim_ok"
2425
  },
2426
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/wrong_bitwidth": {
2427
  "status": "sim_ok"
@@ -2457,7 +2457,7 @@
2457
  "status": "sim_ok"
2458
  },
2459
  "ttchisholm_10g-low-latency-ethernet/mac__code_defs_pkg/case_swap": {
2460
- "status": "compile_error"
2461
  },
2462
  "ttchisholm_10g-low-latency-ethernet/mac__code_defs_pkg/operator_typo": {
2463
  "status": "waveform_identical"
@@ -2466,43 +2466,43 @@
2466
  "status": "waveform_identical"
2467
  },
2468
  "ttchisholm_10g-low-latency-ethernet/mac__mac/missing_reset": {
2469
- "status": "compile_error"
2470
  },
2471
  "ttchisholm_10g-low-latency-ethernet/mac__mac/unconnected_port": {
2472
- "status": "compile_error"
2473
  },
2474
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/case_swap": {
2475
- "status": "compile_error"
2476
  },
2477
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/concat_swap": {
2478
  "status": "waveform_identical"
2479
  },
2480
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/inverted_condition": {
2481
- "status": "compile_error"
2482
  },
2483
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/missing_enable": {
2484
  "status": "waveform_identical"
2485
  },
2486
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/missing_reset": {
2487
- "status": "compile_error"
2488
  },
2489
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/operator_typo": {
2490
  "status": "sim_ok"
2491
  },
2492
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/unconnected_port": {
2493
- "status": "compile_error"
2494
  },
2495
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/wrong_bitwidth": {
2496
  "status": "waveform_identical"
2497
  },
2498
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/case_swap": {
2499
- "status": "compile_error"
2500
  },
2501
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/concat_swap": {
2502
  "status": "sim_ok"
2503
  },
2504
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/inverted_condition": {
2505
- "status": "compile_error"
2506
  },
2507
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/missing_enable": {
2508
  "status": "waveform_identical"
@@ -2511,7 +2511,7 @@
2511
  "status": "compile_error"
2512
  },
2513
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/off_by_one_counter": {
2514
- "status": "compile_error"
2515
  },
2516
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/operator_typo": {
2517
  "status": "llm_failed"
@@ -2520,25 +2520,25 @@
2520
  "status": "sim_ok"
2521
  },
2522
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/unconnected_port": {
2523
- "status": "compile_error"
2524
  },
2525
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/wrong_bitwidth": {
2526
  "status": "timeout"
2527
  },
2528
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/case_swap": {
2529
- "status": "compile_error"
2530
  },
2531
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/concat_swap": {
2532
  "status": "sim_ok"
2533
  },
2534
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/inverted_condition": {
2535
- "status": "compile_error"
2536
  },
2537
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/missing_enable": {
2538
  "status": "sim_ok"
2539
  },
2540
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/missing_reset": {
2541
- "status": "compile_error"
2542
  },
2543
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/operator_typo": {
2544
  "status": "sim_ok"
@@ -2550,13 +2550,13 @@
2550
  "status": "sim_ok"
2551
  },
2552
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/inverted_condition": {
2553
- "status": "compile_error"
2554
  },
2555
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/missing_enable": {
2556
  "status": "sim_ok"
2557
  },
2558
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/missing_reset": {
2559
- "status": "compile_error"
2560
  },
2561
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/operator_typo": {
2562
  "status": "sim_ok"
@@ -2565,25 +2565,25 @@
2565
  "status": "sim_ok"
2566
  },
2567
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/inverted_condition": {
2568
- "status": "compile_error"
2569
  },
2570
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/missing_reset": {
2571
- "status": "compile_error"
2572
  },
2573
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/off_by_one_counter": {
2574
- "status": "compile_error"
2575
  },
2576
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/operator_typo": {
2577
  "status": "sim_ok"
2578
  },
2579
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/inverted_condition": {
2580
- "status": "compile_error"
2581
  },
2582
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/missing_reset": {
2583
- "status": "compile_error"
2584
  },
2585
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/off_by_one_counter": {
2586
- "status": "compile_error"
2587
  },
2588
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/operator_typo": {
2589
  "status": "sim_ok"
@@ -2595,16 +2595,16 @@
2595
  "status": "waveform_identical"
2596
  },
2597
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__mac_pcs/unconnected_port": {
2598
- "status": "compile_error"
2599
  },
2600
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/missing_reset": {
2601
- "status": "compile_error"
2602
  },
2603
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/operator_typo": {
2604
  "status": "waveform_identical"
2605
  },
2606
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/unconnected_port": {
2607
- "status": "compile_error"
2608
  },
2609
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/wrong_bitwidth": {
2610
  "status": "waveform_identical"
@@ -2616,7 +2616,7 @@
2616
  "status": "sim_ok"
2617
  },
2618
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__scrambler/missing_reset": {
2619
- "status": "compile_error"
2620
  },
2621
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__scrambler/operator_typo": {
2622
  "status": "sim_ok"
@@ -2625,13 +2625,13 @@
2625
  "status": "sim_ok"
2626
  },
2627
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/inverted_condition": {
2628
- "status": "compile_error"
2629
  },
2630
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/missing_reset": {
2631
  "status": "compile_error"
2632
  },
2633
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/off_by_one_counter": {
2634
- "status": "compile_error"
2635
  },
2636
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/operator_typo": {
2637
  "status": "sim_ok"
@@ -2643,13 +2643,13 @@
2643
  "status": "sim_ok"
2644
  },
2645
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/inverted_condition": {
2646
- "status": "compile_error"
2647
  },
2648
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/missing_enable": {
2649
  "status": "sim_ok"
2650
  },
2651
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/missing_reset": {
2652
- "status": "compile_error"
2653
  },
2654
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/operator_typo": {
2655
  "status": "sim_ok"
@@ -2688,7 +2688,7 @@
2688
  "status": "sim_ok"
2689
  },
2690
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/off_by_one_counter": {
2691
- "status": "sim_ok"
2692
  },
2693
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/operator_typo": {
2694
  "status": "sim_ok"
@@ -2697,7 +2697,7 @@
2697
  "status": "sim_ok"
2698
  },
2699
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/unconnected_port": {
2700
- "status": "sim_ok"
2701
  },
2702
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/wrong_bitwidth": {
2703
  "status": "sim_ok"
@@ -3790,10 +3790,43 @@
3790
  },
3791
  "yaseensalah_Digital-Design-of-FIR-Filter/fir_filter__fir_filter/wrong_bitwidth": {
3792
  "status": "waveform_identical"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3793
  }
3794
  },
3795
  "bug_types_attempted": {
3796
- "scarv_xcrypto": [
3797
  "blocking_nonblocking",
3798
  "case_swap",
3799
  "concat_swap",
@@ -3810,7 +3843,7 @@
3810
  "width_bit_cutoff",
3811
  "wrong_bitwidth"
3812
  ],
3813
- "fcayci_sv-digital-design": [
3814
  "blocking_nonblocking",
3815
  "case_swap",
3816
  "concat_swap",
@@ -3827,7 +3860,20 @@
3827
  "width_bit_cutoff",
3828
  "wrong_bitwidth"
3829
  ],
3830
- "OrsuVenkataKrishnaiah1235_RTL-Coding": [
 
 
 
 
 
 
 
 
 
 
 
 
 
3831
  "blocking_nonblocking",
3832
  "case_swap",
3833
  "concat_swap",
@@ -3844,7 +3890,7 @@
3844
  "width_bit_cutoff",
3845
  "wrong_bitwidth"
3846
  ],
3847
- "JN513_Risco-5": [
3848
  "blocking_nonblocking",
3849
  "case_swap",
3850
  "concat_swap",
@@ -3861,7 +3907,7 @@
3861
  "width_bit_cutoff",
3862
  "wrong_bitwidth"
3863
  ],
3864
- "nimanaqavi_Verilog-MathFunctions": [
3865
  "blocking_nonblocking",
3866
  "case_swap",
3867
  "concat_swap",
@@ -3878,7 +3924,7 @@
3878
  "width_bit_cutoff",
3879
  "wrong_bitwidth"
3880
  ],
3881
- "thejefflarson_little-cpu": [
3882
  "blocking_nonblocking",
3883
  "case_swap",
3884
  "concat_swap",
@@ -3895,7 +3941,7 @@
3895
  "width_bit_cutoff",
3896
  "wrong_bitwidth"
3897
  ],
3898
- "aditeyabaral_DDCO-Lab-UE18CS207": [
3899
  "case_swap",
3900
  "concat_swap",
3901
  "inverted_condition",
@@ -3908,7 +3954,7 @@
3908
  "width_bit_cutoff",
3909
  "wrong_bitwidth"
3910
  ],
3911
- "biren15_Design-and-Verification-of-LDPC-Decoder": [
3912
  "case_swap",
3913
  "concat_swap",
3914
  "inverted_condition",
@@ -3921,7 +3967,17 @@
3921
  "width_bit_cutoff",
3922
  "wrong_bitwidth"
3923
  ],
3924
- "meiniKi_FazyRV": [
 
 
 
 
 
 
 
 
 
 
3925
  "blocking_nonblocking",
3926
  "case_swap",
3927
  "concat_swap",
@@ -3938,24 +3994,21 @@
3938
  "width_bit_cutoff",
3939
  "wrong_bitwidth"
3940
  ],
3941
- "ttchisholm_10g-low-latency-ethernet": [
3942
  "blocking_nonblocking",
3943
  "case_swap",
3944
  "concat_swap",
3945
- "delayed_signal",
3946
  "inverted_condition",
3947
- "missing_else_latch",
3948
  "missing_enable",
3949
  "missing_reset",
3950
  "off_by_one_counter",
3951
  "operator_typo",
3952
- "signal_typo",
3953
  "state_transition",
3954
  "unconnected_port",
3955
  "width_bit_cutoff",
3956
  "wrong_bitwidth"
3957
  ],
3958
- "circuitvalley_USB_C_Industrial_Camera_FPGA_USB3": [
3959
  "case_swap",
3960
  "concat_swap",
3961
  "inverted_condition",
@@ -3968,7 +4021,7 @@
3968
  "width_bit_cutoff",
3969
  "wrong_bitwidth"
3970
  ],
3971
- "selimsandal_OneShotNPU": [
3972
  "blocking_nonblocking",
3973
  "case_swap",
3974
  "concat_swap",
@@ -3985,7 +4038,7 @@
3985
  "width_bit_cutoff",
3986
  "wrong_bitwidth"
3987
  ],
3988
- "qossayrida_PipelineProcessorDesign": [
3989
  "case_swap",
3990
  "concat_swap",
3991
  "inverted_condition",
@@ -3998,24 +4051,20 @@
3998
  "width_bit_cutoff",
3999
  "wrong_bitwidth"
4000
  ],
4001
- "MohamedHussein27_AMPA_APB4_Protocol": [
4002
- "blocking_nonblocking",
4003
  "case_swap",
4004
  "concat_swap",
4005
- "delayed_signal",
4006
  "inverted_condition",
4007
- "missing_else_latch",
4008
  "missing_enable",
4009
  "missing_reset",
4010
  "off_by_one_counter",
4011
  "operator_typo",
4012
- "signal_typo",
4013
  "state_transition",
4014
  "unconnected_port",
4015
  "width_bit_cutoff",
4016
  "wrong_bitwidth"
4017
  ],
4018
- "erihsu_INT_FP_MAC": [
4019
  "case_swap",
4020
  "concat_swap",
4021
  "inverted_condition",
@@ -4028,34 +4077,41 @@
4028
  "width_bit_cutoff",
4029
  "wrong_bitwidth"
4030
  ],
4031
- "thedatabusdotio_fpga-ml-accelerator": [
 
4032
  "case_swap",
4033
  "concat_swap",
 
4034
  "inverted_condition",
 
4035
  "missing_enable",
4036
  "missing_reset",
4037
  "off_by_one_counter",
4038
  "operator_typo",
 
4039
  "state_transition",
4040
  "unconnected_port",
4041
  "width_bit_cutoff",
4042
  "wrong_bitwidth"
4043
  ],
4044
- "Abdelrahman1810_SPI_Slave_with_Single_Port_RAM": [
 
4045
  "case_swap",
4046
  "concat_swap",
 
4047
  "inverted_condition",
 
4048
  "missing_enable",
4049
  "missing_reset",
4050
  "off_by_one_counter",
4051
  "operator_typo",
 
4052
  "state_transition",
4053
  "unconnected_port",
4054
  "width_bit_cutoff",
4055
  "wrong_bitwidth"
4056
  ],
4057
- "zhangxin6_iverilog_testbench": [
4058
- "blocking_nonblocking",
4059
  "case_swap",
4060
  "concat_swap",
4061
  "inverted_condition",
@@ -4068,23 +4124,24 @@
4068
  "width_bit_cutoff",
4069
  "wrong_bitwidth"
4070
  ],
4071
- "phoeniX-Digital-Design_phoeniX": [
4072
- "blocking_nonblocking"
4073
- ],
4074
- "MohamedHussein27_RISC-V-Single-Cycle-Implementation": [
4075
  "case_swap",
4076
  "concat_swap",
 
4077
  "inverted_condition",
 
4078
  "missing_enable",
4079
  "missing_reset",
4080
  "off_by_one_counter",
4081
  "operator_typo",
 
4082
  "state_transition",
4083
  "unconnected_port",
4084
  "width_bit_cutoff",
4085
  "wrong_bitwidth"
4086
  ],
4087
- "Mr-Bossman_KISC-V": [
4088
  "blocking_nonblocking",
4089
  "case_swap",
4090
  "concat_swap",
@@ -4118,47 +4175,58 @@
4118
  "width_bit_cutoff",
4119
  "wrong_bitwidth"
4120
  ],
4121
- "shahsaumya00_Floating-Point-Adder": [
4122
- "blocking_nonblocking",
4123
  "case_swap",
4124
  "concat_swap",
4125
- "delayed_signal",
4126
  "inverted_condition",
4127
- "missing_else_latch",
4128
  "missing_enable",
4129
  "missing_reset",
4130
  "off_by_one_counter",
4131
  "operator_typo",
4132
- "signal_typo",
4133
  "state_transition",
4134
  "unconnected_port",
4135
  "width_bit_cutoff",
4136
  "wrong_bitwidth"
4137
  ],
4138
- "chili-chips-ba_wireguard-fpga": [
4139
  "blocking_nonblocking",
 
 
 
4140
  "inverted_condition",
4141
  "missing_else_latch",
 
4142
  "missing_reset",
 
4143
  "operator_typo",
4144
  "signal_typo",
 
4145
  "unconnected_port",
 
4146
  "wrong_bitwidth"
4147
  ],
4148
- "dpretet_async_fifo": [
 
4149
  "case_swap",
4150
  "concat_swap",
 
4151
  "inverted_condition",
 
4152
  "missing_enable",
4153
  "missing_reset",
4154
  "off_by_one_counter",
4155
  "operator_typo",
 
4156
  "state_transition",
4157
  "unconnected_port",
4158
  "width_bit_cutoff",
4159
  "wrong_bitwidth"
4160
  ],
4161
- "lucky-wfw_IC_System_Design": [
 
 
 
 
4162
  "blocking_nonblocking",
4163
  "case_swap",
4164
  "concat_swap",
@@ -4175,7 +4243,7 @@
4175
  "width_bit_cutoff",
4176
  "wrong_bitwidth"
4177
  ],
4178
- "apfaudio_eurorack-pmod": [
4179
  "blocking_nonblocking",
4180
  "case_swap",
4181
  "concat_swap",
@@ -4192,20 +4260,24 @@
4192
  "width_bit_cutoff",
4193
  "wrong_bitwidth"
4194
  ],
4195
- "yaseensalah_Digital-Design-of-FIR-Filter": [
 
4196
  "case_swap",
4197
  "concat_swap",
 
4198
  "inverted_condition",
 
4199
  "missing_enable",
4200
  "missing_reset",
4201
  "off_by_one_counter",
4202
  "operator_typo",
 
4203
  "state_transition",
4204
  "unconnected_port",
4205
  "width_bit_cutoff",
4206
  "wrong_bitwidth"
4207
  ],
4208
- "projf_isle": [
4209
  "case_swap",
4210
  "concat_swap",
4211
  "inverted_condition",
@@ -4218,7 +4290,7 @@
4218
  "width_bit_cutoff",
4219
  "wrong_bitwidth"
4220
  ],
4221
- "accomdemy_accomdemy_rv32i": [
4222
  "blocking_nonblocking",
4223
  "case_swap",
4224
  "concat_swap",
@@ -4235,7 +4307,7 @@
4235
  "width_bit_cutoff",
4236
  "wrong_bitwidth"
4237
  ],
4238
- "0thbit_CRC_parallel": [
4239
  "case_swap",
4240
  "concat_swap",
4241
  "inverted_condition",
@@ -4248,11 +4320,7 @@
4248
  "width_bit_cutoff",
4249
  "wrong_bitwidth"
4250
  ],
4251
- "alexforencich_verilog-axi": [
4252
- "case_swap",
4253
- "concat_swap"
4254
- ],
4255
- "srpoyrek_RISC-V": [
4256
  "case_swap",
4257
  "concat_swap",
4258
  "inverted_condition",
@@ -4265,24 +4333,20 @@
4265
  "width_bit_cutoff",
4266
  "wrong_bitwidth"
4267
  ],
4268
- "mnmhdanas_Router-1-x-3-": [
4269
- "blocking_nonblocking",
4270
  "case_swap",
4271
  "concat_swap",
4272
- "delayed_signal",
4273
  "inverted_condition",
4274
- "missing_else_latch",
4275
  "missing_enable",
4276
  "missing_reset",
4277
  "off_by_one_counter",
4278
  "operator_typo",
4279
- "signal_typo",
4280
  "state_transition",
4281
  "unconnected_port",
4282
  "width_bit_cutoff",
4283
  "wrong_bitwidth"
4284
  ],
4285
- "akira2963753_Pipelined-RV32-SoC": [
4286
  "blocking_nonblocking",
4287
  "case_swap",
4288
  "concat_swap",
@@ -4299,7 +4363,7 @@
4299
  "width_bit_cutoff",
4300
  "wrong_bitwidth"
4301
  ],
4302
- "Weiyet_RTLStructLib": [
4303
  "case_swap",
4304
  "concat_swap",
4305
  "inverted_condition",
@@ -4312,7 +4376,7 @@
4312
  "width_bit_cutoff",
4313
  "wrong_bitwidth"
4314
  ],
4315
- "Vaibhav-Gunthe_Verilog-Projects": [
4316
  "case_swap",
4317
  "concat_swap",
4318
  "inverted_condition",
@@ -4325,7 +4389,7 @@
4325
  "width_bit_cutoff",
4326
  "wrong_bitwidth"
4327
  ],
4328
- "mnmhdanas_UART-protocol": [
4329
  "blocking_nonblocking",
4330
  "case_swap",
4331
  "concat_swap",
@@ -4342,58 +4406,36 @@
4342
  "width_bit_cutoff",
4343
  "wrong_bitwidth"
4344
  ],
4345
- "Fraunhofer-IMS_airisc_core_complex": [
4346
- "blocking_nonblocking",
4347
  "case_swap",
4348
  "concat_swap",
4349
- "delayed_signal",
4350
  "inverted_condition",
4351
- "missing_else_latch",
4352
  "missing_enable",
4353
  "missing_reset",
4354
  "off_by_one_counter",
4355
  "operator_typo",
4356
- "signal_typo",
4357
  "state_transition",
4358
  "unconnected_port",
4359
  "width_bit_cutoff",
4360
  "wrong_bitwidth"
4361
  ],
4362
- "MohamedHussein27_SPI_Slave_With_Single_Port_Memory": [
4363
- "blocking_nonblocking",
4364
- "case_swap",
4365
- "concat_swap",
4366
- "delayed_signal",
4367
- "inverted_condition",
4368
- "missing_else_latch",
4369
- "missing_enable",
4370
- "missing_reset",
4371
- "off_by_one_counter",
4372
- "operator_typo",
4373
- "signal_typo",
4374
- "state_transition",
4375
- "unconnected_port",
4376
- "width_bit_cutoff",
4377
- "wrong_bitwidth"
4378
  ],
4379
- "meiniKi_RV32I_SC_Logisim": [
4380
- "blocking_nonblocking",
4381
  "case_swap",
4382
  "concat_swap",
4383
- "delayed_signal",
4384
  "inverted_condition",
4385
- "missing_else_latch",
4386
  "missing_enable",
4387
  "missing_reset",
4388
  "off_by_one_counter",
4389
  "operator_typo",
4390
- "signal_typo",
4391
  "state_transition",
4392
  "unconnected_port",
4393
  "width_bit_cutoff",
4394
  "wrong_bitwidth"
4395
  ],
4396
- "daringpatil3134_SPI_Serial_Peripheral_Interface_Verilog_Modules": [
4397
  "case_swap",
4398
  "concat_swap",
4399
  "inverted_condition",
@@ -4406,7 +4448,7 @@
4406
  "width_bit_cutoff",
4407
  "wrong_bitwidth"
4408
  ],
4409
- "defano_digital-design": [
4410
  "blocking_nonblocking",
4411
  "case_swap",
4412
  "concat_swap",
@@ -4423,14 +4465,18 @@
4423
  "width_bit_cutoff",
4424
  "wrong_bitwidth"
4425
  ],
4426
- "roo16kie_MAC_Verilog": [
 
4427
  "case_swap",
4428
  "concat_swap",
 
4429
  "inverted_condition",
 
4430
  "missing_enable",
4431
  "missing_reset",
4432
  "off_by_one_counter",
4433
  "operator_typo",
 
4434
  "state_transition",
4435
  "unconnected_port",
4436
  "width_bit_cutoff",
 
1
  {
2
  "version": 2,
3
+ "generated_at": "2026-04-06T01:37:45.770173+00:00",
4
  "entries": {
5
  "chili-chips-ba_wireguard-fpga/led_test__led_test/blocking_nonblocking": {
6
  "status": "sim_ok",
 
942
  "status": "waveform_identical"
943
  },
944
  "JN513_Risco-5/ClkDivider__clk_divider/missing_enable": {
945
+ "status": "waveform_identical"
946
  },
947
  "JN513_Risco-5/ClkDivider__clk_divider/missing_reset": {
948
  "status": "waveform_identical"
 
954
  "status": "waveform_identical"
955
  },
956
  "JN513_Risco-5/Core__alu/case_swap": {
957
+ "status": "sim_failed"
958
  },
959
  "JN513_Risco-5/Core__alu/operator_typo": {
960
  "status": "sim_failed"
961
  },
962
  "JN513_Risco-5/Core__alu_control/case_swap": {
963
+ "status": "sim_failed"
964
  },
965
  "JN513_Risco-5/Core__alu_control/inverted_condition": {
966
+ "status": "sim_failed"
967
  },
968
  "JN513_Risco-5/Core__alu_control/operator_typo": {
969
  "status": "sim_failed"
 
972
  "status": "sim_failed"
973
  },
974
  "JN513_Risco-5/Core__control_unit/case_swap": {
975
+ "status": "sim_failed"
976
  },
977
  "JN513_Risco-5/Core__control_unit/inverted_condition": {
978
+ "status": "sim_failed"
979
  },
980
  "JN513_Risco-5/Core__control_unit/missing_enable": {
981
  "status": "sim_failed"
982
  },
983
  "JN513_Risco-5/Core__control_unit/missing_reset": {
984
+ "status": "sim_failed"
985
  },
986
  "JN513_Risco-5/Core__control_unit/operator_typo": {
987
  "status": "sim_failed"
 
993
  "status": "sim_failed"
994
  },
995
  "JN513_Risco-5/Core__core/inverted_condition": {
996
+ "status": "sim_failed"
997
  },
998
  "JN513_Risco-5/Core__core/missing_enable": {
999
+ "status": "sim_failed"
1000
  },
1001
  "JN513_Risco-5/Core__core/missing_reset": {
1002
+ "status": "sim_failed"
1003
  },
1004
  "JN513_Risco-5/Core__core/operator_typo": {
1005
  "status": "sim_failed"
 
1011
  "status": "sim_failed"
1012
  },
1013
  "JN513_Risco-5/Core__csr_unit/case_swap": {
1014
+ "status": "sim_failed"
1015
  },
1016
  "JN513_Risco-5/Core__csr_unit/concat_swap": {
1017
+ "status": "sim_failed"
1018
  },
1019
  "JN513_Risco-5/Core__csr_unit/inverted_condition": {
1020
+ "status": "sim_failed"
1021
  },
1022
  "JN513_Risco-5/Core__csr_unit/missing_enable": {
1023
+ "status": "sim_failed"
1024
  },
1025
  "JN513_Risco-5/Core__csr_unit/missing_reset": {
1026
+ "status": "sim_failed"
1027
  },
1028
  "JN513_Risco-5/Core__csr_unit/operator_typo": {
1029
  "status": "sim_failed"
 
1032
  "status": "sim_failed"
1033
  },
1034
  "JN513_Risco-5/Core__immediate_generator/case_swap": {
1035
+ "status": "sim_failed"
1036
  },
1037
  "JN513_Risco-5/Core__immediate_generator/concat_swap": {
1038
+ "status": "sim_failed"
1039
  },
1040
  "JN513_Risco-5/Core__leds/missing_enable": {
1041
+ "status": "sim_failed"
1042
  },
1043
  "JN513_Risco-5/Core__leds/missing_reset": {
1044
+ "status": "sim_failed"
1045
  },
1046
  "JN513_Risco-5/Core__leds/operator_typo": {
1047
  "status": "sim_failed"
 
1050
  "status": "sim_failed"
1051
  },
1052
  "JN513_Risco-5/Core__mdu/inverted_condition": {
1053
+ "status": "sim_failed"
1054
  },
1055
  "JN513_Risco-5/Core__mdu/missing_enable": {
1056
+ "status": "sim_failed"
1057
  },
1058
  "JN513_Risco-5/Core__mdu/missing_reset": {
1059
+ "status": "sim_failed"
1060
  },
1061
  "JN513_Risco-5/Core__mdu/operator_typo": {
1062
  "status": "sim_failed"
 
1068
  "status": "sim_failed"
1069
  },
1070
  "JN513_Risco-5/Core__memory/case_swap": {
1071
+ "status": "sim_failed"
1072
  },
1073
  "JN513_Risco-5/Core__memory/concat_swap": {
1074
+ "status": "sim_failed"
1075
  },
1076
  "JN513_Risco-5/Core__memory/inverted_condition": {
1077
+ "status": "sim_failed"
1078
  },
1079
  "JN513_Risco-5/Core__memory/missing_enable": {
1080
+ "status": "sim_failed"
1081
  },
1082
  "JN513_Risco-5/Core__memory/operator_typo": {
1083
  "status": "sim_failed"
 
1086
  "status": "sim_failed"
1087
  },
1088
  "JN513_Risco-5/Core__mux/case_swap": {
1089
+ "status": "sim_failed"
1090
  },
1091
  "JN513_Risco-5/Core__pc/missing_enable": {
1092
+ "status": "sim_failed"
1093
  },
1094
  "JN513_Risco-5/Core__pc/missing_reset": {
1095
+ "status": "sim_failed"
1096
  },
1097
  "JN513_Risco-5/Core__pc/operator_typo": {
1098
  "status": "sim_failed"
1099
  },
1100
  "JN513_Risco-5/Core__registers/missing_enable": {
1101
+ "status": "sim_failed"
1102
  },
1103
  "JN513_Risco-5/Core__registers/missing_reset": {
1104
+ "status": "sim_failed"
1105
  },
1106
  "JN513_Risco-5/Core__registers/operator_typo": {
1107
  "status": "sim_failed"
 
1116
  "status": "waveform_identical"
1117
  },
1118
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Master/state_transition": {
1119
+ "status": "waveform_identical"
1120
  },
1121
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Slave/case_swap": {
1122
  "status": "waveform_identical"
 
1140
  "status": "waveform_identical"
1141
  },
1142
  "MohamedHussein27_AMPA_APB4_Protocol/APB_Wrapper__APB_Wrapper/unconnected_port": {
1143
+ "status": "waveform_identical"
1144
  },
1145
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__RAM/case_swap": {
1146
  "status": "sim_ok"
 
1158
  "status": "sim_ok"
1159
  },
1160
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__SPI_SLAVE/inverted_condition": {
1161
+ "status": "waveform_identical"
1162
  },
1163
  "MohamedHussein27_SPI_Slave_With_Single_Port_Memory/SPI_Wrapper__SPI_SLAVE/missing_enable": {
1164
  "status": "sim_ok"
 
1230
  "status": "waveform_identical"
1231
  },
1232
  "Weiyet_RTLStructLib/dual_edge_ff__dual_edge_ff/inverted_condition": {
1233
+ "status": "sim_ok"
1234
  },
1235
  "Weiyet_RTLStructLib/dual_edge_ff__dual_edge_ff/missing_enable": {
1236
  "status": "sim_ok"
 
1245
  "status": "sim_ok"
1246
  },
1247
  "Weiyet_RTLStructLib/fifo__fifo/inverted_condition": {
1248
+ "status": "sim_ok"
1249
  },
1250
  "Weiyet_RTLStructLib/fifo__fifo/missing_enable": {
1251
  "status": "sim_ok"
 
1257
  "status": "sim_ok"
1258
  },
1259
  "Weiyet_RTLStructLib/hash_table__hash_table/inverted_condition": {
1260
+ "status": "sim_ok"
1261
  },
1262
  "Weiyet_RTLStructLib/hash_table__hash_table/missing_enable": {
1263
  "status": "sim_ok"
 
1305
  "status": "sim_ok"
1306
  },
1307
  "Weiyet_RTLStructLib/list__list/inverted_condition": {
1308
+ "status": "sim_ok"
1309
  },
1310
  "Weiyet_RTLStructLib/list__list/missing_enable": {
1311
  "status": "sim_ok"
 
1326
  "status": "sim_ok"
1327
  },
1328
  "Weiyet_RTLStructLib/list__sorter/inverted_condition": {
1329
+ "status": "sim_ok"
1330
  },
1331
  "Weiyet_RTLStructLib/list__sorter/missing_enable": {
1332
  "status": "sim_ok"
 
1341
  "status": "sim_ok"
1342
  },
1343
  "Weiyet_RTLStructLib/singly_linked_list__singly_linked_list/inverted_condition": {
1344
+ "status": "sim_ok"
1345
  },
1346
  "Weiyet_RTLStructLib/singly_linked_list__singly_linked_list/missing_enable": {
1347
  "status": "sim_ok"
 
1362
  "status": "waveform_identical"
1363
  },
1364
  "accomdemy_accomdemy_rv32i/cpu__alu/case_swap": {
1365
+ "status": "sim_ok"
1366
  },
1367
  "accomdemy_accomdemy_rv32i/cpu__alu/operator_typo": {
1368
  "status": "waveform_identical"
 
1371
  "status": "waveform_identical"
1372
  },
1373
  "accomdemy_accomdemy_rv32i/cpu__branch/missing_enable": {
1374
+ "status": "sim_ok"
1375
  },
1376
  "accomdemy_accomdemy_rv32i/cpu__branch/operator_typo": {
1377
  "status": "waveform_identical"
 
1404
  "status": "waveform_identical"
1405
  },
1406
  "accomdemy_accomdemy_rv32i/cpu__instr_memory/concat_swap": {
1407
+ "status": "sim_ok"
1408
  },
1409
  "accomdemy_accomdemy_rv32i/cpu__instr_memory/wrong_bitwidth": {
1410
+ "status": "waveform_identical"
1411
  },
1412
  "accomdemy_accomdemy_rv32i/cpu__pc/missing_enable": {
1413
  "status": "sim_ok"
1414
  },
1415
  "accomdemy_accomdemy_rv32i/cpu__pc/missing_reset": {
1416
+ "status": "sim_ok"
1417
  },
1418
  "accomdemy_accomdemy_rv32i/cpu__pc/operator_typo": {
1419
+ "status": "sim_ok"
1420
  },
1421
  "accomdemy_accomdemy_rv32i/cpu__regfile/inverted_condition": {
1422
  "status": "waveform_identical"
 
1431
  "status": "waveform_identical"
1432
  },
1433
  "aditeyabaral_DDCO-Lab-UE18CS207/alu__lib/operator_typo": {
1434
+ "status": "waveform_identical"
1435
  },
1436
  "aditeyabaral_DDCO-Lab-UE18CS207/fa4__lib/operator_typo": {
1437
+ "status": "waveform_identical"
1438
  },
1439
  "aditeyabaral_DDCO-Lab-UE18CS207/mproc_mem__lib/operator_typo": {
1440
+ "status": "waveform_identical"
1441
  },
1442
  "aditeyabaral_DDCO-Lab-UE18CS207/mproc_mem__mproc_mem/wrong_bitwidth": {
1443
+ "status": "waveform_identical"
1444
  },
1445
  "aditeyabaral_DDCO-Lab-UE18CS207/pc__lib/operator_typo": {
1446
+ "status": "waveform_identical"
1447
  },
1448
  "aditeyabaral_DDCO-Lab-UE18CS207/reg_alu__lib/operator_typo": {
1449
+ "status": "waveform_identical"
1450
  },
1451
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/case_swap": {
1452
+ "status": "waveform_identical"
1453
  },
1454
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/concat_swap": {
1455
  "status": "waveform_identical"
1456
  },
1457
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/operator_typo": {
1458
+ "status": "waveform_identical"
1459
  },
1460
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU/wrong_bitwidth": {
1461
  "status": "waveform_identical"
1462
  },
1463
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ALU_Control/case_swap": {
1464
+ "status": "sim_ok"
1465
  },
1466
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BHT/missing_reset": {
1467
+ "status": "sim_ok"
1468
  },
1469
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BHT/operator_typo": {
1470
+ "status": "waveform_identical"
1471
  },
1472
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BPU/case_swap": {
1473
+ "status": "waveform_identical"
1474
  },
1475
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/missing_enable": {
1476
  "status": "sim_ok"
1477
  },
1478
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/missing_reset": {
1479
+ "status": "waveform_identical"
1480
  },
1481
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__BTB/wrong_bitwidth": {
1482
  "status": "waveform_identical"
1483
  },
1484
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/case_swap": {
1485
+ "status": "waveform_identical"
1486
  },
1487
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/missing_enable": {
1488
+ "status": "waveform_identical"
1489
  },
1490
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/missing_reset": {
1491
+ "status": "waveform_identical"
1492
  },
1493
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/operator_typo": {
1494
+ "status": "waveform_identical"
1495
  },
1496
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__CSR/wrong_bitwidth": {
1497
  "status": "waveform_identical"
1498
  },
1499
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/case_swap": {
1500
+ "status": "waveform_identical"
1501
  },
1502
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/inverted_condition": {
1503
+ "status": "waveform_identical"
1504
  },
1505
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/operator_typo": {
1506
+ "status": "waveform_identical"
1507
  },
1508
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Control/width_bit_cutoff": {
1509
  "status": "waveform_identical"
1510
  },
1511
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/concat_swap": {
1512
+ "status": "waveform_identical"
1513
  },
1514
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/inverted_condition": {
1515
+ "status": "waveform_identical"
1516
  },
1517
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/missing_enable": {
1518
+ "status": "waveform_identical"
1519
  },
1520
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__D_Mem/wrong_bitwidth": {
1521
  "status": "sim_ok"
1522
  },
1523
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__EX_MEM/missing_reset": {
1524
+ "status": "sim_ok"
1525
  },
1526
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Forwarding_Unit/inverted_condition": {
1527
+ "status": "waveform_identical"
1528
  },
1529
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Forwarding_Unit/operator_typo": {
1530
+ "status": "waveform_identical"
1531
  },
1532
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__Hazard_Unit/operator_typo": {
1533
+ "status": "waveform_identical"
1534
  },
1535
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ID_EX/missing_reset": {
1536
+ "status": "sim_ok"
1537
  },
1538
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__IF_ID/missing_enable": {
1539
+ "status": "waveform_identical"
1540
  },
1541
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__IF_ID/missing_reset": {
1542
+ "status": "sim_ok"
1543
  },
1544
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__I_Mem/concat_swap": {
1545
+ "status": "waveform_identical"
1546
  },
1547
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__I_Mem/wrong_bitwidth": {
1548
  "status": "sim_ok"
1549
  },
1550
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ImmGen/case_swap": {
1551
+ "status": "waveform_identical"
1552
  },
1553
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__ImmGen/concat_swap": {
1554
+ "status": "waveform_identical"
1555
  },
1556
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__LDU/case_swap": {
1557
+ "status": "waveform_identical"
1558
  },
1559
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__LDU/concat_swap": {
1560
  "status": "waveform_identical"
1561
  },
1562
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__MEM_WB/missing_reset": {
1563
+ "status": "sim_ok"
1564
  },
1565
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC/case_swap": {
1566
+ "status": "waveform_identical"
1567
  },
1568
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC/missing_reset": {
1569
+ "status": "sim_ok"
1570
  },
1571
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__PC_Adderr/missing_enable": {
1572
+ "status": "waveform_identical"
1573
  },
1574
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/missing_enable": {
1575
+ "status": "waveform_identical"
1576
  },
1577
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/missing_reset": {
1578
+ "status": "waveform_identical"
1579
  },
1580
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/operator_typo": {
1581
+ "status": "waveform_identical"
1582
  },
1583
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RF/wrong_bitwidth": {
1584
  "status": "sim_ok"
1585
  },
1586
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RISCV_CPU/operator_typo": {
1587
+ "status": "sim_ok"
1588
  },
1589
  "akira2963753_Pipelined-RV32-SoC/RISCV_CPU__RISCV_CPU/unconnected_port": {
1590
  "status": "sim_ok"
 
1596
  "status": "sim_ok"
1597
  },
1598
  "apfaudio_eurorack-pmod/ak4619__ak4619/concat_swap": {
1599
+ "status": "sim_ok"
1600
  },
1601
  "apfaudio_eurorack-pmod/ak4619__ak4619/delayed_signal": {
1602
  "status": "sim_ok"
1603
  },
1604
  "apfaudio_eurorack-pmod/ak4619__ak4619/inverted_condition": {
1605
+ "status": "waveform_identical"
1606
  },
1607
  "apfaudio_eurorack-pmod/ak4619__ak4619/missing_enable": {
1608
+ "status": "timeout"
1609
  },
1610
  "apfaudio_eurorack-pmod/ak4619__ak4619/missing_reset": {
1611
  "status": "sim_ok"
1612
  },
1613
  "apfaudio_eurorack-pmod/ak4619__ak4619/off_by_one_counter": {
1614
+ "status": "waveform_identical"
1615
  },
1616
  "apfaudio_eurorack-pmod/ak4619__ak4619/operator_typo": {
1617
  "status": "sim_ok"
1618
  },
1619
  "apfaudio_eurorack-pmod/ak4619__ak4619/wrong_bitwidth": {
1620
+ "status": "sim_ok"
1621
  },
1622
  "apfaudio_eurorack-pmod/pmod_i2c_master__pmod_i2c_master/case_swap": {
1623
  "status": "llm_failed"
 
1656
  "status": "sim_ok"
1657
  },
1658
  "apfaudio_eurorack-pmod/transpose__delayline/wrong_bitwidth": {
1659
+ "status": "sim_ok"
1660
  },
1661
  "apfaudio_eurorack-pmod/transpose__transpose/delayed_signal": {
1662
  "status": "sim_ok"
1663
  },
1664
  "apfaudio_eurorack-pmod/transpose__transpose/inverted_condition": {
1665
+ "status": "sim_ok"
1666
  },
1667
  "apfaudio_eurorack-pmod/transpose__transpose/missing_enable": {
1668
+ "status": "sim_ok"
1669
  },
1670
  "apfaudio_eurorack-pmod/transpose__transpose/off_by_one_counter": {
1671
+ "status": "sim_ok"
1672
  },
1673
  "apfaudio_eurorack-pmod/transpose__transpose/operator_typo": {
1674
  "status": "sim_ok"
 
1797
  "status": "timeout"
1798
  },
1799
  "defano_digital-design/uart__uart/operator_typo": {
1800
+ "status": "sim_ok"
1801
  },
1802
  "defano_digital-design/uart__uart/unconnected_port": {
1803
  "status": "sim_ok"
1804
  },
1805
  "defano_digital-design/uart__uart/wrong_bitwidth": {
1806
+ "status": "timeout"
1807
  },
1808
  "meiniKi_RV32I_SC_Logisim/mcu__d_ledbar/inverted_condition": {
1809
  "status": "waveform_identical"
 
1929
  "status": "sim_ok"
1930
  },
1931
  "mnmhdanas_Router-1-x-3-/router_fifo__router_fifo/missing_reset": {
1932
+ "status": "sim_ok"
1933
  },
1934
  "mnmhdanas_Router-1-x-3-/router_fifo__router_fifo/operator_typo": {
1935
  "status": "waveform_identical"
 
1947
  "status": "waveform_identical"
1948
  },
1949
  "mnmhdanas_Router-1-x-3-/router_fsm__router_fsm/state_transition": {
1950
+ "status": "waveform_identical"
1951
  },
1952
  "mnmhdanas_Router-1-x-3-/router_reg__router_reg/inverted_condition": {
1953
+ "status": "waveform_identical"
1954
  },
1955
  "mnmhdanas_Router-1-x-3-/router_reg__router_reg/missing_enable": {
1956
  "status": "waveform_identical"
 
1986
  "status": "sim_ok"
1987
  },
1988
  "nimanaqavi_Verilog-MathFunctions/part_Ln_TOP__Ln_CO/missing_reset": {
1989
+ "status": "waveform_identical"
1990
  },
1991
  "nimanaqavi_Verilog-MathFunctions/part_Ln_TOP__Ln_CO/state_transition": {
1992
  "status": "sim_ok"
 
2361
  "status": "sim_ok"
2362
  },
2363
  "thedatabusdotio_fpga-ml-accelerator/acclerator__accelerator/unconnected_port": {
2364
+ "status": "waveform_identical"
2365
  },
2366
  "thedatabusdotio_fpga-ml-accelerator/acclerator__comparator2/concat_swap": {
2367
  "status": "waveform_identical"
 
2397
  "status": "waveform_identical"
2398
  },
2399
  "thedatabusdotio_fpga-ml-accelerator/acclerator__convolver/missing_reset": {
2400
+ "status": "waveform_identical"
2401
  },
2402
  "thedatabusdotio_fpga-ml-accelerator/acclerator__convolver/operator_typo": {
2403
  "status": "waveform_identical"
 
2415
  "status": "waveform_identical"
2416
  },
2417
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/missing_reset": {
2418
+ "status": "waveform_identical"
2419
  },
2420
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/operator_typo": {
2421
  "status": "waveform_identical"
2422
  },
2423
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/unconnected_port": {
2424
+ "status": "waveform_identical"
2425
  },
2426
  "thedatabusdotio_fpga-ml-accelerator/acclerator__mac_manual/wrong_bitwidth": {
2427
  "status": "sim_ok"
 
2457
  "status": "sim_ok"
2458
  },
2459
  "ttchisholm_10g-low-latency-ethernet/mac__code_defs_pkg/case_swap": {
2460
+ "status": "waveform_identical"
2461
  },
2462
  "ttchisholm_10g-low-latency-ethernet/mac__code_defs_pkg/operator_typo": {
2463
  "status": "waveform_identical"
 
2466
  "status": "waveform_identical"
2467
  },
2468
  "ttchisholm_10g-low-latency-ethernet/mac__mac/missing_reset": {
2469
+ "status": "sim_ok"
2470
  },
2471
  "ttchisholm_10g-low-latency-ethernet/mac__mac/unconnected_port": {
2472
+ "status": "waveform_identical"
2473
  },
2474
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/case_swap": {
2475
+ "status": "waveform_identical"
2476
  },
2477
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/concat_swap": {
2478
  "status": "waveform_identical"
2479
  },
2480
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/inverted_condition": {
2481
+ "status": "sim_ok"
2482
  },
2483
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/missing_enable": {
2484
  "status": "waveform_identical"
2485
  },
2486
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/missing_reset": {
2487
+ "status": "waveform_identical"
2488
  },
2489
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/operator_typo": {
2490
  "status": "sim_ok"
2491
  },
2492
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/unconnected_port": {
2493
+ "status": "sim_ok"
2494
  },
2495
  "ttchisholm_10g-low-latency-ethernet/mac__rx_mac/wrong_bitwidth": {
2496
  "status": "waveform_identical"
2497
  },
2498
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/case_swap": {
2499
+ "status": "sim_ok"
2500
  },
2501
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/concat_swap": {
2502
  "status": "sim_ok"
2503
  },
2504
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/inverted_condition": {
2505
+ "status": "sim_ok"
2506
  },
2507
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/missing_enable": {
2508
  "status": "waveform_identical"
 
2511
  "status": "compile_error"
2512
  },
2513
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/off_by_one_counter": {
2514
+ "status": "waveform_identical"
2515
  },
2516
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/operator_typo": {
2517
  "status": "llm_failed"
 
2520
  "status": "sim_ok"
2521
  },
2522
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/unconnected_port": {
2523
+ "status": "sim_ok"
2524
  },
2525
  "ttchisholm_10g-low-latency-ethernet/mac__tx_mac/wrong_bitwidth": {
2526
  "status": "timeout"
2527
  },
2528
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/case_swap": {
2529
+ "status": "sim_ok"
2530
  },
2531
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/concat_swap": {
2532
  "status": "sim_ok"
2533
  },
2534
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/inverted_condition": {
2535
+ "status": "sim_ok"
2536
  },
2537
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/missing_enable": {
2538
  "status": "sim_ok"
2539
  },
2540
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/missing_reset": {
2541
+ "status": "sim_ok"
2542
  },
2543
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__decoder/operator_typo": {
2544
  "status": "sim_ok"
 
2550
  "status": "sim_ok"
2551
  },
2552
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/inverted_condition": {
2553
+ "status": "sim_ok"
2554
  },
2555
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/missing_enable": {
2556
  "status": "sim_ok"
2557
  },
2558
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/missing_reset": {
2559
+ "status": "waveform_identical"
2560
  },
2561
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__encoder/operator_typo": {
2562
  "status": "sim_ok"
 
2565
  "status": "sim_ok"
2566
  },
2567
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/inverted_condition": {
2568
+ "status": "sim_ok"
2569
  },
2570
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/missing_reset": {
2571
+ "status": "timeout"
2572
  },
2573
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/off_by_one_counter": {
2574
+ "status": "sim_ok"
2575
  },
2576
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__gearbox_seq/operator_typo": {
2577
  "status": "sim_ok"
2578
  },
2579
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/inverted_condition": {
2580
+ "status": "sim_ok"
2581
  },
2582
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/missing_reset": {
2583
+ "status": "waveform_identical"
2584
  },
2585
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/off_by_one_counter": {
2586
+ "status": "waveform_identical"
2587
  },
2588
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__lock_state/operator_typo": {
2589
  "status": "sim_ok"
 
2595
  "status": "waveform_identical"
2596
  },
2597
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__mac_pcs/unconnected_port": {
2598
+ "status": "sim_ok"
2599
  },
2600
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/missing_reset": {
2601
+ "status": "sim_ok"
2602
  },
2603
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/operator_typo": {
2604
  "status": "waveform_identical"
2605
  },
2606
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/unconnected_port": {
2607
+ "status": "sim_ok"
2608
  },
2609
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__pcs/wrong_bitwidth": {
2610
  "status": "waveform_identical"
 
2616
  "status": "sim_ok"
2617
  },
2618
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__scrambler/missing_reset": {
2619
+ "status": "sim_ok"
2620
  },
2621
  "ttchisholm_10g-low-latency-ethernet/mac_pcs__scrambler/operator_typo": {
2622
  "status": "sim_ok"
 
2625
  "status": "sim_ok"
2626
  },
2627
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/inverted_condition": {
2628
+ "status": "sim_ok"
2629
  },
2630
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/missing_reset": {
2631
  "status": "compile_error"
2632
  },
2633
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/off_by_one_counter": {
2634
+ "status": "sim_ok"
2635
  },
2636
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__rx_gearbox/operator_typo": {
2637
  "status": "sim_ok"
 
2643
  "status": "sim_ok"
2644
  },
2645
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/inverted_condition": {
2646
+ "status": "sim_ok"
2647
  },
2648
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/missing_enable": {
2649
  "status": "sim_ok"
2650
  },
2651
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/missing_reset": {
2652
+ "status": "sim_ok"
2653
  },
2654
  "ttchisholm_10g-low-latency-ethernet/rx_gearbox__tx_gearbox/operator_typo": {
2655
  "status": "sim_ok"
 
2688
  "status": "sim_ok"
2689
  },
2690
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/off_by_one_counter": {
2691
+ "status": "waveform_identical"
2692
  },
2693
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/operator_typo": {
2694
  "status": "sim_ok"
 
2697
  "status": "sim_ok"
2698
  },
2699
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/unconnected_port": {
2700
+ "status": "waveform_identical"
2701
  },
2702
  "zhangxin6_iverilog_testbench/hdlcrev__hdlcrev/wrong_bitwidth": {
2703
  "status": "sim_ok"
 
3790
  },
3791
  "yaseensalah_Digital-Design-of-FIR-Filter/fir_filter__fir_filter/wrong_bitwidth": {
3792
  "status": "waveform_identical"
3793
+ },
3794
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_master/inverted_condition": {
3795
+ "status": "sim_ok"
3796
+ },
3797
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_master/missing_reset": {
3798
+ "status": "waveform_identical"
3799
+ },
3800
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_master/operator_typo": {
3801
+ "status": "waveform_identical"
3802
+ },
3803
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_master/state_transition": {
3804
+ "status": "sim_ok"
3805
+ },
3806
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_slave/inverted_condition": {
3807
+ "status": "sim_ok"
3808
+ },
3809
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_slave/missing_reset": {
3810
+ "status": "sim_ok"
3811
+ },
3812
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_slave/operator_typo": {
3813
+ "status": "waveform_identical"
3814
+ },
3815
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_slave/state_transition": {
3816
+ "status": "sim_ok"
3817
+ },
3818
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_slave/wrong_bitwidth": {
3819
+ "status": "waveform_identical"
3820
+ },
3821
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_top/unconnected_port": {
3822
+ "status": "waveform_identical"
3823
+ },
3824
+ "arhamhashmi01_Axi4-lite/axi4_lite_top__axi4_lite_top/wrong_bitwidth": {
3825
+ "status": "waveform_identical"
3826
  }
3827
  },
3828
  "bug_types_attempted": {
3829
+ "accomdemy_accomdemy_rv32i": [
3830
  "blocking_nonblocking",
3831
  "case_swap",
3832
  "concat_swap",
 
3843
  "width_bit_cutoff",
3844
  "wrong_bitwidth"
3845
  ],
3846
+ "MohamedHussein27_SPI_Slave_With_Single_Port_Memory": [
3847
  "blocking_nonblocking",
3848
  "case_swap",
3849
  "concat_swap",
 
3860
  "width_bit_cutoff",
3861
  "wrong_bitwidth"
3862
  ],
3863
+ "erihsu_INT_FP_MAC": [
3864
+ "case_swap",
3865
+ "concat_swap",
3866
+ "inverted_condition",
3867
+ "missing_enable",
3868
+ "missing_reset",
3869
+ "off_by_one_counter",
3870
+ "operator_typo",
3871
+ "state_transition",
3872
+ "unconnected_port",
3873
+ "width_bit_cutoff",
3874
+ "wrong_bitwidth"
3875
+ ],
3876
+ "lucky-wfw_IC_System_Design": [
3877
  "blocking_nonblocking",
3878
  "case_swap",
3879
  "concat_swap",
 
3890
  "width_bit_cutoff",
3891
  "wrong_bitwidth"
3892
  ],
3893
+ "defano_digital-design": [
3894
  "blocking_nonblocking",
3895
  "case_swap",
3896
  "concat_swap",
 
3907
  "width_bit_cutoff",
3908
  "wrong_bitwidth"
3909
  ],
3910
+ "akira2963753_Pipelined-RV32-SoC": [
3911
  "blocking_nonblocking",
3912
  "case_swap",
3913
  "concat_swap",
 
3924
  "width_bit_cutoff",
3925
  "wrong_bitwidth"
3926
  ],
3927
+ "MohamedHussein27_AMPA_APB4_Protocol": [
3928
  "blocking_nonblocking",
3929
  "case_swap",
3930
  "concat_swap",
 
3941
  "width_bit_cutoff",
3942
  "wrong_bitwidth"
3943
  ],
3944
+ "0thbit_CRC_parallel": [
3945
  "case_swap",
3946
  "concat_swap",
3947
  "inverted_condition",
 
3954
  "width_bit_cutoff",
3955
  "wrong_bitwidth"
3956
  ],
3957
+ "daringpatil3134_SPI_Serial_Peripheral_Interface_Verilog_Modules": [
3958
  "case_swap",
3959
  "concat_swap",
3960
  "inverted_condition",
 
3967
  "width_bit_cutoff",
3968
  "wrong_bitwidth"
3969
  ],
3970
+ "chili-chips-ba_wireguard-fpga": [
3971
+ "blocking_nonblocking",
3972
+ "inverted_condition",
3973
+ "missing_else_latch",
3974
+ "missing_reset",
3975
+ "operator_typo",
3976
+ "signal_typo",
3977
+ "unconnected_port",
3978
+ "wrong_bitwidth"
3979
+ ],
3980
+ "selimsandal_OneShotNPU": [
3981
  "blocking_nonblocking",
3982
  "case_swap",
3983
  "concat_swap",
 
3994
  "width_bit_cutoff",
3995
  "wrong_bitwidth"
3996
  ],
3997
+ "zhangxin6_iverilog_testbench": [
3998
  "blocking_nonblocking",
3999
  "case_swap",
4000
  "concat_swap",
 
4001
  "inverted_condition",
 
4002
  "missing_enable",
4003
  "missing_reset",
4004
  "off_by_one_counter",
4005
  "operator_typo",
 
4006
  "state_transition",
4007
  "unconnected_port",
4008
  "width_bit_cutoff",
4009
  "wrong_bitwidth"
4010
  ],
4011
+ "dpretet_async_fifo": [
4012
  "case_swap",
4013
  "concat_swap",
4014
  "inverted_condition",
 
4021
  "width_bit_cutoff",
4022
  "wrong_bitwidth"
4023
  ],
4024
+ "mnmhdanas_Router-1-x-3-": [
4025
  "blocking_nonblocking",
4026
  "case_swap",
4027
  "concat_swap",
 
4038
  "width_bit_cutoff",
4039
  "wrong_bitwidth"
4040
  ],
4041
+ "projf_isle": [
4042
  "case_swap",
4043
  "concat_swap",
4044
  "inverted_condition",
 
4051
  "width_bit_cutoff",
4052
  "wrong_bitwidth"
4053
  ],
4054
+ "srpoyrek_RISC-V": [
 
4055
  "case_swap",
4056
  "concat_swap",
 
4057
  "inverted_condition",
 
4058
  "missing_enable",
4059
  "missing_reset",
4060
  "off_by_one_counter",
4061
  "operator_typo",
 
4062
  "state_transition",
4063
  "unconnected_port",
4064
  "width_bit_cutoff",
4065
  "wrong_bitwidth"
4066
  ],
4067
+ "Weiyet_RTLStructLib": [
4068
  "case_swap",
4069
  "concat_swap",
4070
  "inverted_condition",
 
4077
  "width_bit_cutoff",
4078
  "wrong_bitwidth"
4079
  ],
4080
+ "nimanaqavi_Verilog-MathFunctions": [
4081
+ "blocking_nonblocking",
4082
  "case_swap",
4083
  "concat_swap",
4084
+ "delayed_signal",
4085
  "inverted_condition",
4086
+ "missing_else_latch",
4087
  "missing_enable",
4088
  "missing_reset",
4089
  "off_by_one_counter",
4090
  "operator_typo",
4091
+ "signal_typo",
4092
  "state_transition",
4093
  "unconnected_port",
4094
  "width_bit_cutoff",
4095
  "wrong_bitwidth"
4096
  ],
4097
+ "apfaudio_eurorack-pmod": [
4098
+ "blocking_nonblocking",
4099
  "case_swap",
4100
  "concat_swap",
4101
+ "delayed_signal",
4102
  "inverted_condition",
4103
+ "missing_else_latch",
4104
  "missing_enable",
4105
  "missing_reset",
4106
  "off_by_one_counter",
4107
  "operator_typo",
4108
+ "signal_typo",
4109
  "state_transition",
4110
  "unconnected_port",
4111
  "width_bit_cutoff",
4112
  "wrong_bitwidth"
4113
  ],
4114
+ "yaseensalah_Digital-Design-of-FIR-Filter": [
 
4115
  "case_swap",
4116
  "concat_swap",
4117
  "inverted_condition",
 
4124
  "width_bit_cutoff",
4125
  "wrong_bitwidth"
4126
  ],
4127
+ "fcayci_sv-digital-design": [
4128
+ "blocking_nonblocking",
 
 
4129
  "case_swap",
4130
  "concat_swap",
4131
+ "delayed_signal",
4132
  "inverted_condition",
4133
+ "missing_else_latch",
4134
  "missing_enable",
4135
  "missing_reset",
4136
  "off_by_one_counter",
4137
  "operator_typo",
4138
+ "signal_typo",
4139
  "state_transition",
4140
  "unconnected_port",
4141
  "width_bit_cutoff",
4142
  "wrong_bitwidth"
4143
  ],
4144
+ "ttchisholm_10g-low-latency-ethernet": [
4145
  "blocking_nonblocking",
4146
  "case_swap",
4147
  "concat_swap",
 
4175
  "width_bit_cutoff",
4176
  "wrong_bitwidth"
4177
  ],
4178
+ "biren15_Design-and-Verification-of-LDPC-Decoder": [
 
4179
  "case_swap",
4180
  "concat_swap",
 
4181
  "inverted_condition",
 
4182
  "missing_enable",
4183
  "missing_reset",
4184
  "off_by_one_counter",
4185
  "operator_typo",
 
4186
  "state_transition",
4187
  "unconnected_port",
4188
  "width_bit_cutoff",
4189
  "wrong_bitwidth"
4190
  ],
4191
+ "thejefflarson_little-cpu": [
4192
  "blocking_nonblocking",
4193
+ "case_swap",
4194
+ "concat_swap",
4195
+ "delayed_signal",
4196
  "inverted_condition",
4197
  "missing_else_latch",
4198
+ "missing_enable",
4199
  "missing_reset",
4200
+ "off_by_one_counter",
4201
  "operator_typo",
4202
  "signal_typo",
4203
+ "state_transition",
4204
  "unconnected_port",
4205
+ "width_bit_cutoff",
4206
  "wrong_bitwidth"
4207
  ],
4208
+ "OrsuVenkataKrishnaiah1235_RTL-Coding": [
4209
+ "blocking_nonblocking",
4210
  "case_swap",
4211
  "concat_swap",
4212
+ "delayed_signal",
4213
  "inverted_condition",
4214
+ "missing_else_latch",
4215
  "missing_enable",
4216
  "missing_reset",
4217
  "off_by_one_counter",
4218
  "operator_typo",
4219
+ "signal_typo",
4220
  "state_transition",
4221
  "unconnected_port",
4222
  "width_bit_cutoff",
4223
  "wrong_bitwidth"
4224
  ],
4225
+ "alexforencich_verilog-axi": [
4226
+ "case_swap",
4227
+ "concat_swap"
4228
+ ],
4229
+ "scarv_xcrypto": [
4230
  "blocking_nonblocking",
4231
  "case_swap",
4232
  "concat_swap",
 
4243
  "width_bit_cutoff",
4244
  "wrong_bitwidth"
4245
  ],
4246
+ "meiniKi_FazyRV": [
4247
  "blocking_nonblocking",
4248
  "case_swap",
4249
  "concat_swap",
 
4260
  "width_bit_cutoff",
4261
  "wrong_bitwidth"
4262
  ],
4263
+ "shahsaumya00_Floating-Point-Adder": [
4264
+ "blocking_nonblocking",
4265
  "case_swap",
4266
  "concat_swap",
4267
+ "delayed_signal",
4268
  "inverted_condition",
4269
+ "missing_else_latch",
4270
  "missing_enable",
4271
  "missing_reset",
4272
  "off_by_one_counter",
4273
  "operator_typo",
4274
+ "signal_typo",
4275
  "state_transition",
4276
  "unconnected_port",
4277
  "width_bit_cutoff",
4278
  "wrong_bitwidth"
4279
  ],
4280
+ "Abdelrahman1810_SPI_Slave_with_Single_Port_RAM": [
4281
  "case_swap",
4282
  "concat_swap",
4283
  "inverted_condition",
 
4290
  "width_bit_cutoff",
4291
  "wrong_bitwidth"
4292
  ],
4293
+ "meiniKi_RV32I_SC_Logisim": [
4294
  "blocking_nonblocking",
4295
  "case_swap",
4296
  "concat_swap",
 
4307
  "width_bit_cutoff",
4308
  "wrong_bitwidth"
4309
  ],
4310
+ "roo16kie_MAC_Verilog": [
4311
  "case_swap",
4312
  "concat_swap",
4313
  "inverted_condition",
 
4320
  "width_bit_cutoff",
4321
  "wrong_bitwidth"
4322
  ],
4323
+ "arhamhashmi01_Axi4-lite": [
 
 
 
 
4324
  "case_swap",
4325
  "concat_swap",
4326
  "inverted_condition",
 
4333
  "width_bit_cutoff",
4334
  "wrong_bitwidth"
4335
  ],
4336
+ "circuitvalley_USB_C_Industrial_Camera_FPGA_USB3": [
 
4337
  "case_swap",
4338
  "concat_swap",
 
4339
  "inverted_condition",
 
4340
  "missing_enable",
4341
  "missing_reset",
4342
  "off_by_one_counter",
4343
  "operator_typo",
 
4344
  "state_transition",
4345
  "unconnected_port",
4346
  "width_bit_cutoff",
4347
  "wrong_bitwidth"
4348
  ],
4349
+ "Fraunhofer-IMS_airisc_core_complex": [
4350
  "blocking_nonblocking",
4351
  "case_swap",
4352
  "concat_swap",
 
4363
  "width_bit_cutoff",
4364
  "wrong_bitwidth"
4365
  ],
4366
+ "thedatabusdotio_fpga-ml-accelerator": [
4367
  "case_swap",
4368
  "concat_swap",
4369
  "inverted_condition",
 
4376
  "width_bit_cutoff",
4377
  "wrong_bitwidth"
4378
  ],
4379
+ "MohamedHussein27_RISC-V-Single-Cycle-Implementation": [
4380
  "case_swap",
4381
  "concat_swap",
4382
  "inverted_condition",
 
4389
  "width_bit_cutoff",
4390
  "wrong_bitwidth"
4391
  ],
4392
+ "JN513_Risco-5": [
4393
  "blocking_nonblocking",
4394
  "case_swap",
4395
  "concat_swap",
 
4406
  "width_bit_cutoff",
4407
  "wrong_bitwidth"
4408
  ],
4409
+ "Vaibhav-Gunthe_Verilog-Projects": [
 
4410
  "case_swap",
4411
  "concat_swap",
 
4412
  "inverted_condition",
 
4413
  "missing_enable",
4414
  "missing_reset",
4415
  "off_by_one_counter",
4416
  "operator_typo",
 
4417
  "state_transition",
4418
  "unconnected_port",
4419
  "width_bit_cutoff",
4420
  "wrong_bitwidth"
4421
  ],
4422
+ "phoeniX-Digital-Design_phoeniX": [
4423
+ "blocking_nonblocking"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4424
  ],
4425
+ "aditeyabaral_DDCO-Lab-UE18CS207": [
 
4426
  "case_swap",
4427
  "concat_swap",
 
4428
  "inverted_condition",
 
4429
  "missing_enable",
4430
  "missing_reset",
4431
  "off_by_one_counter",
4432
  "operator_typo",
 
4433
  "state_transition",
4434
  "unconnected_port",
4435
  "width_bit_cutoff",
4436
  "wrong_bitwidth"
4437
  ],
4438
+ "qossayrida_PipelineProcessorDesign": [
4439
  "case_swap",
4440
  "concat_swap",
4441
  "inverted_condition",
 
4448
  "width_bit_cutoff",
4449
  "wrong_bitwidth"
4450
  ],
4451
+ "mnmhdanas_UART-protocol": [
4452
  "blocking_nonblocking",
4453
  "case_swap",
4454
  "concat_swap",
 
4465
  "width_bit_cutoff",
4466
  "wrong_bitwidth"
4467
  ],
4468
+ "Mr-Bossman_KISC-V": [
4469
+ "blocking_nonblocking",
4470
  "case_swap",
4471
  "concat_swap",
4472
+ "delayed_signal",
4473
  "inverted_condition",
4474
+ "missing_else_latch",
4475
  "missing_enable",
4476
  "missing_reset",
4477
  "off_by_one_counter",
4478
  "operator_typo",
4479
+ "signal_typo",
4480
  "state_transition",
4481
  "unconnected_port",
4482
  "width_bit_cutoff",
manifest.json CHANGED
@@ -147,112 +147,7 @@
147
  "repo": "JN513/Risco-5",
148
  "clone_url": "https://github.com/JN513/Risco-5.git",
149
  "commit_sha": "12a570c7124f5f78f2c9513248f8e6bd85137068",
150
- "testbenches": [
151
- {
152
- "file_path": "tests/core_test.v",
153
- "tb_type": "verilog",
154
- "simulator": "icarus",
155
- "makefile_path": null,
156
- "top_module": "Core",
157
- "rtl_files": [
158
- "src/core/core.v",
159
- "src/core/pc.v",
160
- "src/core/mux.v",
161
- "src/core/registers.v",
162
- "src/core/control_unit.v",
163
- "src/core/alu_control.v",
164
- "src/core/alu.v",
165
- "src/core/immediate_generator.v",
166
- "src/core/csr_unit.v",
167
- "src/core/mdu.v",
168
- "src/peripheral/memory.v",
169
- "src/peripheral/bus.v",
170
- "src/peripheral/leds.v"
171
- ]
172
- },
173
- {
174
- "file_path": "tests/registers_test.v",
175
- "tb_type": "verilog",
176
- "simulator": "icarus",
177
- "makefile_path": null,
178
- "top_module": "Registers",
179
- "rtl_files": [
180
- "src/core/registers.v"
181
- ]
182
- },
183
- {
184
- "file_path": "tests/soc_test.v",
185
- "tb_type": "verilog",
186
- "simulator": "icarus",
187
- "makefile_path": null,
188
- "top_module": "Risco_5_SOC",
189
- "rtl_files": [
190
- "src/peripheral/soc.v",
191
- "src/core/core.v",
192
- "src/core/pc.v",
193
- "src/core/mux.v",
194
- "src/core/registers.v",
195
- "src/core/control_unit.v",
196
- "src/core/alu_control.v",
197
- "src/core/alu.v",
198
- "src/core/immediate_generator.v",
199
- "src/core/csr_unit.v",
200
- "src/core/mdu.v",
201
- "src/peripheral/memory.v",
202
- "src/peripheral/bus.v",
203
- "src/peripheral/leds.v",
204
- "src/peripheral/uart.v",
205
- "src/peripheral/uart_rx.v",
206
- "src/peripheral/uart_tx.v",
207
- "src/peripheral/fifo.v",
208
- "src/peripheral/gpios.v",
209
- "src/peripheral/gpio.v",
210
- "src/peripheral/pwm.v"
211
- ]
212
- },
213
- {
214
- "file_path": "tests/gpio_test.v",
215
- "tb_type": "verilog",
216
- "simulator": "icarus",
217
- "makefile_path": null,
218
- "top_module": "GPIOS",
219
- "rtl_files": [
220
- "src/peripheral/gpios.v",
221
- "src/peripheral/gpio.v",
222
- "src/peripheral/pwm.v"
223
- ]
224
- },
225
- {
226
- "file_path": "tests/pc_test.v",
227
- "tb_type": "verilog",
228
- "simulator": "icarus",
229
- "makefile_path": null,
230
- "top_module": "PC",
231
- "rtl_files": [
232
- "src/core/pc.v"
233
- ]
234
- },
235
- {
236
- "file_path": "tests/clk_divider.v",
237
- "tb_type": "verilog",
238
- "simulator": "icarus",
239
- "makefile_path": null,
240
- "top_module": "ClkDivider",
241
- "rtl_files": [
242
- "debug/clk_divider.v"
243
- ]
244
- },
245
- {
246
- "file_path": "tests/reset_test.v",
247
- "tb_type": "verilog",
248
- "simulator": "icarus",
249
- "makefile_path": null,
250
- "top_module": "ResetBootSystem",
251
- "rtl_files": [
252
- "debug/reset.v"
253
- ]
254
- }
255
- ]
256
  },
257
  "Mr-Bossman_KISC-V": {
258
  "repo": "Mr-Bossman/KISC-V",
@@ -331,133 +226,13 @@
331
  "repo": "accomdemy/accomdemy_rv32i",
332
  "clone_url": "https://github.com/accomdemy/accomdemy_rv32i.git",
333
  "commit_sha": "4f75b555a0e0419e2417294f85df202ba0415e4b",
334
- "testbenches": [
335
- {
336
- "file_path": "sim/cpu_tb.v",
337
- "tb_type": "verilog",
338
- "simulator": "icarus",
339
- "makefile_path": null,
340
- "top_module": "cpu",
341
- "rtl_files": [
342
- "src/cpu.v",
343
- "src/alu.v",
344
- "src/branch.v",
345
- "src/decoder.v",
346
- "src/dm_control.v",
347
- "src/instr_memory.v",
348
- "src/MUX2to1_32bit.v",
349
- "src/MUX4to1_32bit.v",
350
- "src/pc.v",
351
- "src/regfile.v"
352
- ]
353
- }
354
- ]
355
  },
356
  "akira2963753_Pipelined-RV32-SoC": {
357
  "repo": "akira2963753/Pipelined-RV32-SoC",
358
  "clone_url": "https://github.com/akira2963753/Pipelined-RV32-SoC.git",
359
  "commit_sha": "ded74adc6a29ef5bbdac56a5eac5b99328064371",
360
- "testbenches": [
361
- {
362
- "file_path": "source/Five-Stage-Pipelined-CPU/RTL/RISCV_CPU_tb.v",
363
- "tb_type": "verilog",
364
- "simulator": "icarus",
365
- "makefile_path": null,
366
- "top_module": "RISCV_CPU",
367
- "rtl_files": [
368
- "source/Five-Stage-Pipelined-CPU/RTL/ALU.v",
369
- "source/Five-Stage-Pipelined-CPU/RTL/ALU_Control.v",
370
- "source/Five-Stage-Pipelined-CPU/RTL/BHT.v",
371
- "source/Five-Stage-Pipelined-CPU/RTL/BPU.v",
372
- "source/Five-Stage-Pipelined-CPU/RTL/BTB.v",
373
- "source/Five-Stage-Pipelined-CPU/RTL/CSR.v",
374
- "source/Five-Stage-Pipelined-CPU/RTL/Control.v",
375
- "source/Five-Stage-Pipelined-CPU/RTL/D_Mem.v",
376
- "source/Five-Stage-Pipelined-CPU/RTL/EX_MEM.v",
377
- "source/Five-Stage-Pipelined-CPU/RTL/Forwarding_Unit.v",
378
- "source/Five-Stage-Pipelined-CPU/RTL/Hazard_Unit.v",
379
- "source/Five-Stage-Pipelined-CPU/RTL/ID_EX.v",
380
- "source/Five-Stage-Pipelined-CPU/RTL/IF_ID.v",
381
- "source/Five-Stage-Pipelined-CPU/RTL/I_Mem.v",
382
- "source/Five-Stage-Pipelined-CPU/RTL/ImmGen.v",
383
- "source/Five-Stage-Pipelined-CPU/RTL/LDU.v",
384
- "source/Five-Stage-Pipelined-CPU/RTL/MEM_WB.v",
385
- "source/Five-Stage-Pipelined-CPU/RTL/PC.v",
386
- "source/Five-Stage-Pipelined-CPU/RTL/PC_Adderr.v",
387
- "source/Five-Stage-Pipelined-CPU/RTL/RF.v",
388
- "source/Five-Stage-Pipelined-CPU/RTL/RISCV_CPU.v"
389
- ]
390
- },
391
- {
392
- "file_path": "source/RISC-V-Processor/RTL/RISCV_PROCESSOR_tb.v",
393
- "tb_type": "verilog",
394
- "simulator": "icarus",
395
- "makefile_path": null,
396
- "top_module": "RISCV_PROCESSOR",
397
- "rtl_files": [
398
- "source/RISC-V-Processor/RTL/ALU.v",
399
- "source/RISC-V-Processor/RTL/ALU_Control.v",
400
- "source/RISC-V-Processor/RTL/AXI4_Lite_Bus.v",
401
- "source/RISC-V-Processor/RTL/BHT.v",
402
- "source/RISC-V-Processor/RTL/BPU.v",
403
- "source/RISC-V-Processor/RTL/BTB.v",
404
- "source/RISC-V-Processor/RTL/CSR.v",
405
- "source/RISC-V-Processor/RTL/Control.v",
406
- "source/RISC-V-Processor/RTL/D_BRAM.v",
407
- "source/RISC-V-Processor/RTL/D_Cache.v",
408
- "source/RISC-V-Processor/RTL/D_Mem.v",
409
- "source/RISC-V-Processor/RTL/EX_MEM.v",
410
- "source/RISC-V-Processor/RTL/Forwarding_Unit.v",
411
- "source/RISC-V-Processor/RTL/Hazard_Unit.v",
412
- "source/RISC-V-Processor/RTL/ID_EX.v",
413
- "source/RISC-V-Processor/RTL/IF_ID.v",
414
- "source/RISC-V-Processor/RTL/I_Cache.v",
415
- "source/RISC-V-Processor/RTL/ImmGen.v",
416
- "source/RISC-V-Processor/RTL/LDU.v",
417
- "source/RISC-V-Processor/RTL/MEM_WB.v",
418
- "source/RISC-V-Processor/RTL/PC.v",
419
- "source/RISC-V-Processor/RTL/PC_Adder.v",
420
- "source/RISC-V-Processor/RTL/RF.v",
421
- "source/RISC-V-Processor/RTL/RISCV_CPU.v",
422
- "source/RISC-V-Processor/RTL/RISCV_PROCESSOR.v"
423
- ]
424
- },
425
- {
426
- "file_path": "source/CACHE/AXI4-LITE/Pattern.v",
427
- "tb_type": "verilog",
428
- "simulator": "icarus",
429
- "makefile_path": null,
430
- "top_module": "Tested",
431
- "rtl_files": [
432
- "source/CACHE/AXI4-LITE/Tested.v",
433
- "source/CACHE/AXI4-LITE/AXI4_Lite_Bus.v"
434
- ]
435
- },
436
- {
437
- "file_path": "source/CACHE/I-CACHE/Pattern.v",
438
- "tb_type": "verilog",
439
- "simulator": "icarus",
440
- "makefile_path": null,
441
- "top_module": "Tested",
442
- "rtl_files": [
443
- "source/CACHE/I-CACHE/Tested.v",
444
- "source/CACHE/I-CACHE/Cache.v",
445
- "source/CACHE/I-CACHE/AXI4_Lite_Bus.v"
446
- ]
447
- },
448
- {
449
- "file_path": "source/CACHE/D-CACHE/Pattern.v",
450
- "tb_type": "verilog",
451
- "simulator": "icarus",
452
- "makefile_path": null,
453
- "top_module": "Tested",
454
- "rtl_files": [
455
- "source/CACHE/D-CACHE/Tested.v",
456
- "source/CACHE/D-CACHE/D_Cache.v",
457
- "source/CACHE/D-CACHE/AXI4_Lite_Bus.v"
458
- ]
459
- }
460
- ]
461
  },
462
  "thejefflarson_little-cpu": {
463
  "repo": "thejefflarson/little-cpu",
@@ -487,244 +262,19 @@
487
  "repo": "Abdelrahman1810/SPI_Slave_with_Single_Port_RAM",
488
  "clone_url": "https://github.com/Abdelrahman1810/SPI_Slave_with_Single_Port_RAM.git",
489
  "commit_sha": "6233b161a0428ec0a0e22b6e74373c4d8d98d972",
490
- "testbenches": [
491
- {
492
- "file_path": "Codes/testbench/tb_SPI.sv",
493
- "tb_type": "verilog",
494
- "simulator": "icarus",
495
- "makefile_path": null,
496
- "top_module": "SPI",
497
- "rtl_files": [
498
- "Codes/RTL/SPI.v"
499
- ]
500
- },
501
- {
502
- "file_path": "Codes/testbench/tb_instantiation.sv",
503
- "tb_type": "verilog",
504
- "simulator": "icarus",
505
- "makefile_path": null,
506
- "top_module": "instantiation",
507
- "rtl_files": [
508
- "Codes/RTL/instantiation.v",
509
- "Codes/RTL/SPI.v",
510
- "Codes/RTL/RAM.v"
511
- ]
512
- },
513
- {
514
- "file_path": "Codes/testbench/tb_ram.sv",
515
- "tb_type": "verilog",
516
- "simulator": "icarus",
517
- "makefile_path": null,
518
- "top_module": "RAM",
519
- "rtl_files": [
520
- "Codes/RTL/RAM.v"
521
- ]
522
- }
523
- ]
524
  },
525
  "daringpatil3134_SPI_Serial_Peripheral_Interface_Verilog_Modules": {
526
  "repo": "daringpatil3134/SPI_Serial_Peripheral_Interface_Verilog_Modules",
527
  "clone_url": "https://github.com/daringpatil3134/SPI_Serial_Peripheral_Interface_Verilog_Modules.git",
528
  "commit_sha": "0da4e865fb717d6221977ba285118f9a97c6158b",
529
- "testbenches": [
530
- {
531
- "file_path": "tb.v",
532
- "tb_type": "verilog",
533
- "simulator": "icarus",
534
- "makefile_path": null,
535
- "top_module": "spi_top",
536
- "rtl_files": [
537
- "spi_top.v",
538
- "spi_clgen.v",
539
- "spi_shift_reg.v",
540
- "spi_slave.v",
541
- "spi_defines.v",
542
- "wishbone_master.v"
543
- ]
544
- }
545
- ]
546
  },
547
  "projf_isle": {
548
  "repo": "projf/isle",
549
  "clone_url": "https://github.com/projf/isle.git",
550
  "commit_sha": "ff248e1db8cd70c4a52399c96dee1554bf5baeac",
551
- "testbenches": [
552
- {
553
- "file_path": "hardware/tests/book/ch01.py",
554
- "tb_type": "cocotb",
555
- "simulator": "icarus",
556
- "makefile_path": "hardware/tests/book/ch01.mk",
557
- "top_module": "ch01",
558
- "rtl_files": [
559
- "hardware/book/ch01/ch01.v",
560
- "hardware/gfx/display.v"
561
- ]
562
- },
563
- {
564
- "file_path": "hardware/tests/book/ch02.py",
565
- "tb_type": "cocotb",
566
- "simulator": "icarus",
567
- "makefile_path": "hardware/tests/book/ch02.mk",
568
- "top_module": "ch02",
569
- "rtl_files": [
570
- "hardware/book/ch02/ch02.v",
571
- "hardware/gfx/canv_disp_agu.v",
572
- "hardware/gfx/display.v",
573
- "hardware/mem/clut.v",
574
- "hardware/mem/vram.v"
575
- ]
576
- },
577
- {
578
- "file_path": "hardware/tests/book/ch03.py",
579
- "tb_type": "cocotb",
580
- "simulator": "icarus",
581
- "makefile_path": "hardware/tests/book/ch03.mk",
582
- "top_module": "ch03",
583
- "rtl_files": [
584
- "hardware/book/ch03/ch03.v",
585
- "hardware/gfx/canv_disp_agu.v",
586
- "hardware/gfx/canv_draw_agu.v",
587
- "hardware/gfx/circle.v",
588
- "hardware/gfx/display.v",
589
- "hardware/gfx/earthrise.v",
590
- "hardware/gfx/fline.v",
591
- "hardware/gfx/line.v",
592
- "hardware/mem/clut.v",
593
- "hardware/mem/erlist.v",
594
- "hardware/mem/vram.v"
595
- ]
596
- },
597
- {
598
- "file_path": "hardware/tests/book/ch04.py",
599
- "tb_type": "cocotb",
600
- "simulator": "icarus",
601
- "makefile_path": "hardware/tests/book/ch04.mk",
602
- "top_module": "ch04",
603
- "rtl_files": [
604
- "hardware/book/ch04/ch04.v",
605
- "hardware/gfx/display.v",
606
- "hardware/gfx/font_glyph.v",
607
- "hardware/gfx/textmode.v",
608
- "hardware/mem/clut.v",
609
- "hardware/mem/rom_sync.v",
610
- "hardware/mem/tram.v"
611
- ]
612
- },
613
- {
614
- "file_path": "hardware/tests/book/ch05.py",
615
- "tb_type": "cocotb",
616
- "simulator": "icarus",
617
- "makefile_path": "hardware/tests/book/ch05.mk",
618
- "top_module": "ch05",
619
- "rtl_files": [
620
- "hardware/book/ch05/ch05.v",
621
- "hardware/cpu/FemtoRV32.v",
622
- "hardware/gfx/display.v",
623
- "hardware/gfx/font_glyph.v",
624
- "hardware/gfx/textmode.v",
625
- "hardware/mem/clut.v",
626
- "hardware/mem/rom_sync.v",
627
- "hardware/mem/sysram.v",
628
- "hardware/mem/tram.v",
629
- "hardware/sys/xd.v"
630
- ]
631
- },
632
- {
633
- "file_path": "hardware/tests/book/ch06.py",
634
- "tb_type": "cocotb",
635
- "simulator": "icarus",
636
- "makefile_path": "hardware/tests/book/ch06.mk",
637
- "top_module": "ch06",
638
- "rtl_files": [
639
- "hardware/book/ch06/ch06.v",
640
- "hardware/cpu/FemtoRV32.v",
641
- "hardware/devs/gfx_dev.v",
642
- "hardware/devs/sys_dev.v",
643
- "hardware/devs/uart_dev.v",
644
- "hardware/gfx/display.v",
645
- "hardware/gfx/font_glyph.v",
646
- "hardware/gfx/textmode.v",
647
- "hardware/io/uart_rx.v",
648
- "hardware/math/lfsr.v",
649
- "hardware/mem/clut.v",
650
- "hardware/mem/fifo_sync.v",
651
- "hardware/mem/rom_sync.v",
652
- "hardware/mem/sysram.v",
653
- "hardware/mem/tram.v",
654
- "hardware/sys/xd.v"
655
- ]
656
- },
657
- {
658
- "file_path": "hardware/tests/gfx/canv_disp_agu.py",
659
- "tb_type": "cocotb",
660
- "simulator": "icarus",
661
- "makefile_path": "hardware/tests/gfx/canv_disp_agu.mk",
662
- "top_module": "canv_disp_agu",
663
- "rtl_files": [
664
- "hardware/gfx/canv_disp_agu.v"
665
- ]
666
- },
667
- {
668
- "file_path": "hardware/tests/gfx/display.py",
669
- "tb_type": "cocotb",
670
- "simulator": "icarus",
671
- "makefile_path": "hardware/tests/gfx/display.mk",
672
- "top_module": "display",
673
- "rtl_files": [
674
- "hardware/gfx/display.v"
675
- ]
676
- },
677
- {
678
- "file_path": "hardware/tests/gfx/tmds_encoder.py",
679
- "tb_type": "cocotb",
680
- "simulator": "verilator",
681
- "makefile_path": "hardware/tests/gfx/tmds_encoder.mk",
682
- "top_module": "tmds_encoder",
683
- "rtl_files": [
684
- "hardware/gfx/tmds_encoder.v"
685
- ]
686
- },
687
- {
688
- "file_path": "hardware/tests/io/uart_rx.py",
689
- "tb_type": "cocotb",
690
- "simulator": "icarus",
691
- "makefile_path": "hardware/tests/io/uart_rx.mk",
692
- "top_module": "uart_rx",
693
- "rtl_files": [
694
- "hardware/io/uart_rx.v"
695
- ]
696
- },
697
- {
698
- "file_path": "hardware/tests/io/uart_tx.py",
699
- "tb_type": "cocotb",
700
- "simulator": "icarus",
701
- "makefile_path": "hardware/tests/io/uart_tx.mk",
702
- "top_module": "uart_tx",
703
- "rtl_files": [
704
- "hardware/io/uart_tx.v"
705
- ]
706
- },
707
- {
708
- "file_path": "hardware/tests/mem/clut.py",
709
- "tb_type": "cocotb",
710
- "simulator": "icarus",
711
- "makefile_path": "hardware/tests/mem/clut.mk",
712
- "top_module": "clut",
713
- "rtl_files": [
714
- "hardware/mem/clut.v"
715
- ]
716
- },
717
- {
718
- "file_path": "hardware/tests/mem/vram.py",
719
- "tb_type": "cocotb",
720
- "simulator": "icarus",
721
- "makefile_path": "hardware/tests/mem/vram.mk",
722
- "top_module": "vram",
723
- "rtl_files": [
724
- "hardware/mem/vram.v"
725
- ]
726
- }
727
- ]
728
  },
729
  "MohamedHussein27_RISC-V-Single-Cycle-Implementation": {
730
  "repo": "MohamedHussein27/RISC-V-Single-Cycle-Implementation",
@@ -850,88 +400,7 @@
850
  "repo": "circuitvalley/USB_C_Industrial_Camera_FPGA_USB3",
851
  "clone_url": "https://github.com/circuitvalley/USB_C_Industrial_Camera_FPGA_USB3.git",
852
  "commit_sha": "f870a4f4afb68a6a32e525b23f479d8d98161576",
853
- "testbenches": [
854
- {
855
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_camera_controller.v",
856
- "tb_type": "verilog",
857
- "simulator": "icarus",
858
- "makefile_path": null,
859
- "top_module": "camera_controller",
860
- "rtl_files": [
861
- "FPGA_Firmware/Source/src/camera_controller.v"
862
- ]
863
- },
864
- {
865
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker.v",
866
- "tb_type": "verilog",
867
- "simulator": "icarus",
868
- "makefile_path": null,
869
- "top_module": "mipi_csi_rx_raw_depacker_8b2lane_2ppc",
870
- "rtl_files": [
871
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b2lane_2ppc.v"
872
- ]
873
- },
874
- {
875
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker8b4_10bit.v",
876
- "tb_type": "verilog",
877
- "simulator": "icarus",
878
- "makefile_path": null,
879
- "top_module": "mipi_csi_rx_raw_depacker_8b4lane",
880
- "rtl_files": [
881
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b4lane.v"
882
- ]
883
- },
884
- {
885
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker8b4_12bit.v",
886
- "tb_type": "verilog",
887
- "simulator": "icarus",
888
- "makefile_path": null,
889
- "top_module": "mipi_csi_rx_raw_depacker_8b4lane",
890
- "rtl_files": [
891
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b4lane.v"
892
- ]
893
- },
894
- {
895
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker8b4_14bit.v",
896
- "tb_type": "verilog",
897
- "simulator": "icarus",
898
- "makefile_path": null,
899
- "top_module": "mipi_csi_rx_raw_depacker_8b4lane",
900
- "rtl_files": [
901
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b4lane.v"
902
- ]
903
- },
904
- {
905
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker_12bit2.v",
906
- "tb_type": "verilog",
907
- "simulator": "icarus",
908
- "makefile_path": null,
909
- "top_module": "mipi_csi_rx_raw_depacker_8b2lane_2ppc",
910
- "rtl_files": [
911
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b2lane_2ppc.v"
912
- ]
913
- },
914
- {
915
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_mipi_rx_raw_depacker_14bit2.v",
916
- "tb_type": "verilog",
917
- "simulator": "icarus",
918
- "makefile_path": null,
919
- "top_module": "mipi_csi_rx_raw_depacker_8b2lane_2ppc",
920
- "rtl_files": [
921
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b2lane_2ppc.v"
922
- ]
923
- },
924
- {
925
- "file_path": "FPGA_Firmware/Source/Testblocks/tb_rx_raw_depacker_8b2lane_10bit.v",
926
- "tb_type": "verilog",
927
- "simulator": "icarus",
928
- "makefile_path": null,
929
- "top_module": "mipi_csi_rx_raw_depacker_8b2lane",
930
- "rtl_files": [
931
- "FPGA_Firmware/Source/src/mipi_csi_rx_raw_depacker_8b2lane.v"
932
- ]
933
- }
934
- ]
935
  },
936
  "biren15_Design-and-Verification-of-LDPC-Decoder": {
937
  "repo": "biren15/Design-and-Verification-of-LDPC-Decoder",
@@ -1183,5 +652,24 @@
1183
  ]
1184
  }
1185
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1186
  }
1187
  }
 
147
  "repo": "JN513/Risco-5",
148
  "clone_url": "https://github.com/JN513/Risco-5.git",
149
  "commit_sha": "12a570c7124f5f78f2c9513248f8e6bd85137068",
150
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  },
152
  "Mr-Bossman_KISC-V": {
153
  "repo": "Mr-Bossman/KISC-V",
 
226
  "repo": "accomdemy/accomdemy_rv32i",
227
  "clone_url": "https://github.com/accomdemy/accomdemy_rv32i.git",
228
  "commit_sha": "4f75b555a0e0419e2417294f85df202ba0415e4b",
229
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  },
231
  "akira2963753_Pipelined-RV32-SoC": {
232
  "repo": "akira2963753/Pipelined-RV32-SoC",
233
  "clone_url": "https://github.com/akira2963753/Pipelined-RV32-SoC.git",
234
  "commit_sha": "ded74adc6a29ef5bbdac56a5eac5b99328064371",
235
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  },
237
  "thejefflarson_little-cpu": {
238
  "repo": "thejefflarson/little-cpu",
 
262
  "repo": "Abdelrahman1810/SPI_Slave_with_Single_Port_RAM",
263
  "clone_url": "https://github.com/Abdelrahman1810/SPI_Slave_with_Single_Port_RAM.git",
264
  "commit_sha": "6233b161a0428ec0a0e22b6e74373c4d8d98d972",
265
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  },
267
  "daringpatil3134_SPI_Serial_Peripheral_Interface_Verilog_Modules": {
268
  "repo": "daringpatil3134/SPI_Serial_Peripheral_Interface_Verilog_Modules",
269
  "clone_url": "https://github.com/daringpatil3134/SPI_Serial_Peripheral_Interface_Verilog_Modules.git",
270
  "commit_sha": "0da4e865fb717d6221977ba285118f9a97c6158b",
271
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  },
273
  "projf_isle": {
274
  "repo": "projf/isle",
275
  "clone_url": "https://github.com/projf/isle.git",
276
  "commit_sha": "ff248e1db8cd70c4a52399c96dee1554bf5baeac",
277
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  },
279
  "MohamedHussein27_RISC-V-Single-Cycle-Implementation": {
280
  "repo": "MohamedHussein27/RISC-V-Single-Cycle-Implementation",
 
400
  "repo": "circuitvalley/USB_C_Industrial_Camera_FPGA_USB3",
401
  "clone_url": "https://github.com/circuitvalley/USB_C_Industrial_Camera_FPGA_USB3.git",
402
  "commit_sha": "f870a4f4afb68a6a32e525b23f479d8d98161576",
403
+ "testbenches": []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  },
405
  "biren15_Design-and-Verification-of-LDPC-Decoder": {
406
  "repo": "biren15/Design-and-Verification-of-LDPC-Decoder",
 
652
  ]
653
  }
654
  ]
655
+ },
656
+ "arhamhashmi01_Axi4-lite": {
657
+ "repo": "arhamhashmi01/Axi4-lite",
658
+ "clone_url": "https://github.com/arhamhashmi01/Axi4-lite.git",
659
+ "commit_sha": "bc334fa7118f49e88d20dc53bfa887d5db293620",
660
+ "testbenches": [
661
+ {
662
+ "file_path": "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sim_1/new/axi4_lite_top_tb.sv",
663
+ "tb_type": "verilog",
664
+ "simulator": "icarus",
665
+ "makefile_path": null,
666
+ "top_module": "axi4_lite_top",
667
+ "rtl_files": [
668
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_top.sv",
669
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_master.sv",
670
+ "Axi4-lite-vivado/Axi4-lite-vivado.srcs/sources_1/new/axi4_lite_slave.sv"
671
+ ]
672
+ }
673
+ ]
674
  }
675
  }