├── README.md ├── master_agt_top ├── .master_driver.sv.swp ├── master_agent.sv ├── master_agt_top.gitkeep ├── master_agt_top.sv ├── master_driver.sv ├── master_monitor.sv ├── master_sequence.sv ├── master_sequencer.sv └── master_xtn.sv ├── rtl ├── .gitkeep └── axi_interface.sv ├── slave_agt_top ├── .gitkeep ├── .slave_driver.sv.swo ├── slave_agent.sv ├── slave_agt_top.sv ├── slave_driver.sv ├── slave_monitor.sv ├── slave_sequence.sv ├── slave_sequencer.sv └── slave_xtn.sv ├── tb ├── .gitkeep ├── avi_environment.sv ├── axi_env_config.sv ├── axi_scoreboard.sv ├── axi_virtual_seq.sv ├── master_agt_cfg.sv ├── slave_agt_cfg.sv ├── top.sv └── virtual_sequencer.sv └── test ├── .gitkeep ├── axi_test.sv └── axi_test_pkg.sv /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/README.md -------------------------------------------------------------------------------- /master_agt_top/.master_driver.sv.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/.master_driver.sv.swp -------------------------------------------------------------------------------- /master_agt_top/master_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_agent.sv -------------------------------------------------------------------------------- /master_agt_top/master_agt_top.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /master_agt_top/master_agt_top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_agt_top.sv -------------------------------------------------------------------------------- /master_agt_top/master_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_driver.sv -------------------------------------------------------------------------------- /master_agt_top/master_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_monitor.sv -------------------------------------------------------------------------------- /master_agt_top/master_sequence.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_sequence.sv -------------------------------------------------------------------------------- /master_agt_top/master_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_sequencer.sv -------------------------------------------------------------------------------- /master_agt_top/master_xtn.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/master_agt_top/master_xtn.sv -------------------------------------------------------------------------------- /rtl/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtl/axi_interface.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/rtl/axi_interface.sv -------------------------------------------------------------------------------- /slave_agt_top/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slave_agt_top/.slave_driver.sv.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/.slave_driver.sv.swo -------------------------------------------------------------------------------- /slave_agt_top/slave_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_agent.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_agt_top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_agt_top.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_driver.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_monitor.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_sequence.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_sequence.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_sequencer.sv -------------------------------------------------------------------------------- /slave_agt_top/slave_xtn.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/slave_agt_top/slave_xtn.sv -------------------------------------------------------------------------------- /tb/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tb/avi_environment.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/avi_environment.sv -------------------------------------------------------------------------------- /tb/axi_env_config.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/axi_env_config.sv -------------------------------------------------------------------------------- /tb/axi_scoreboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/axi_scoreboard.sv -------------------------------------------------------------------------------- /tb/axi_virtual_seq.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/axi_virtual_seq.sv -------------------------------------------------------------------------------- /tb/master_agt_cfg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/master_agt_cfg.sv -------------------------------------------------------------------------------- /tb/slave_agt_cfg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/slave_agt_cfg.sv -------------------------------------------------------------------------------- /tb/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/top.sv -------------------------------------------------------------------------------- /tb/virtual_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/tb/virtual_sequencer.sv -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/axi_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/test/axi_test.sv -------------------------------------------------------------------------------- /test/axi_test_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muguang123/AXI_Verification/HEAD/test/axi_test_pkg.sv --------------------------------------------------------------------------------