├── AHB2APB Bridge_report.docx ├── AHB2APB Bridge_report.pdf ├── AHB2APB.pptx ├── AHB_EXAMPLE_AMBA.pdf ├── AMBA_Spec.pdf ├── README.md ├── code ├── ahb_agent │ ├── ahb_agent.sv │ ├── ahb_config.sv │ ├── ahb_driver.sv │ ├── ahb_monitor.sv │ ├── ahb_sequence.sv │ ├── ahb_sequencer.sv │ └── ahb_xtns.sv ├── apb_agent │ ├── apb_agent.sv │ ├── apb_config.sv │ ├── apb_driver.sv │ ├── apb_monitor.sv │ ├── apb_sequence.sv │ ├── apb_sequencer.sv │ └── apb_xtns.sv ├── bridge_rtl │ ├── ahb_slave.v │ ├── apb_controller.v │ └── top.v ├── rtl │ ├── ahb_slave.v │ ├── apb_controller.v │ ├── bridge_if.sv │ └── top.v ├── tb │ ├── env.sv │ ├── env_config.sv │ ├── scoreboard.sv │ ├── top.sv │ ├── virtual_sequence.sv │ └── virtual_sequencer.sv └── test │ ├── bridge_test_package.sv │ ├── test.sv │ └── test.sv~ └── images for wrap4 ├── AHB_DRV.JPG ├── AHB_MON.JPG ├── APB_DRV.JPG ├── APB_MON.JPG └── COVERAGE REPORT.JPG /AHB2APB Bridge_report.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/AHB2APB Bridge_report.docx -------------------------------------------------------------------------------- /AHB2APB Bridge_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/AHB2APB Bridge_report.pdf -------------------------------------------------------------------------------- /AHB2APB.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/AHB2APB.pptx -------------------------------------------------------------------------------- /AHB_EXAMPLE_AMBA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/AHB_EXAMPLE_AMBA.pdf -------------------------------------------------------------------------------- /AMBA_Spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/AMBA_Spec.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/README.md -------------------------------------------------------------------------------- /code/ahb_agent/ahb_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_agent.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_config.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_config.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_driver.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_monitor.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_sequence.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_sequence.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_sequencer.sv -------------------------------------------------------------------------------- /code/ahb_agent/ahb_xtns.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/ahb_agent/ahb_xtns.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_agent.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_agent.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_config.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_config.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_driver.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_driver.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_monitor.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_monitor.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_sequence.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_sequence.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_sequencer.sv -------------------------------------------------------------------------------- /code/apb_agent/apb_xtns.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/apb_agent/apb_xtns.sv -------------------------------------------------------------------------------- /code/bridge_rtl/ahb_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/bridge_rtl/ahb_slave.v -------------------------------------------------------------------------------- /code/bridge_rtl/apb_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/bridge_rtl/apb_controller.v -------------------------------------------------------------------------------- /code/bridge_rtl/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/bridge_rtl/top.v -------------------------------------------------------------------------------- /code/rtl/ahb_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/rtl/ahb_slave.v -------------------------------------------------------------------------------- /code/rtl/apb_controller.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/rtl/apb_controller.v -------------------------------------------------------------------------------- /code/rtl/bridge_if.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/rtl/bridge_if.sv -------------------------------------------------------------------------------- /code/rtl/top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/rtl/top.v -------------------------------------------------------------------------------- /code/tb/env.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/env.sv -------------------------------------------------------------------------------- /code/tb/env_config.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/env_config.sv -------------------------------------------------------------------------------- /code/tb/scoreboard.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/scoreboard.sv -------------------------------------------------------------------------------- /code/tb/top.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/top.sv -------------------------------------------------------------------------------- /code/tb/virtual_sequence.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/virtual_sequence.sv -------------------------------------------------------------------------------- /code/tb/virtual_sequencer.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/tb/virtual_sequencer.sv -------------------------------------------------------------------------------- /code/test/bridge_test_package.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/test/bridge_test_package.sv -------------------------------------------------------------------------------- /code/test/test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/test/test.sv -------------------------------------------------------------------------------- /code/test/test.sv~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/code/test/test.sv~ -------------------------------------------------------------------------------- /images for wrap4/AHB_DRV.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/images for wrap4/AHB_DRV.JPG -------------------------------------------------------------------------------- /images for wrap4/AHB_MON.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/images for wrap4/AHB_MON.JPG -------------------------------------------------------------------------------- /images for wrap4/APB_DRV.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/images for wrap4/APB_DRV.JPG -------------------------------------------------------------------------------- /images for wrap4/APB_MON.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/images for wrap4/APB_MON.JPG -------------------------------------------------------------------------------- /images for wrap4/COVERAGE REPORT.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deekshithkrishnegowda/AHB2APB-bridge-IP-core-verification/HEAD/images for wrap4/COVERAGE REPORT.JPG --------------------------------------------------------------------------------