├── .editorconfig ├── .gitignore ├── Bender.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── include └── apb │ ├── assign.svh │ └── typedef.svh ├── scripts ├── compile_vsim.sh ├── run_vsim.sh └── synth.sh ├── src ├── apb_cdc.sv ├── apb_demux.sv ├── apb_err_slv.sv ├── apb_intf.sv ├── apb_pkg.sv ├── apb_regs.sv └── apb_test.sv └── test ├── synth_bench.sv ├── tb_apb_cdc.sv ├── tb_apb_demux.sv ├── tb_apb_regs.sv └── tb_apb_regs.wave.do /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/.gitignore -------------------------------------------------------------------------------- /Bender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/Bender.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/README.md -------------------------------------------------------------------------------- /include/apb/assign.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/include/apb/assign.svh -------------------------------------------------------------------------------- /include/apb/typedef.svh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/include/apb/typedef.svh -------------------------------------------------------------------------------- /scripts/compile_vsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/scripts/compile_vsim.sh -------------------------------------------------------------------------------- /scripts/run_vsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/scripts/run_vsim.sh -------------------------------------------------------------------------------- /scripts/synth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/scripts/synth.sh -------------------------------------------------------------------------------- /src/apb_cdc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_cdc.sv -------------------------------------------------------------------------------- /src/apb_demux.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_demux.sv -------------------------------------------------------------------------------- /src/apb_err_slv.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_err_slv.sv -------------------------------------------------------------------------------- /src/apb_intf.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_intf.sv -------------------------------------------------------------------------------- /src/apb_pkg.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_pkg.sv -------------------------------------------------------------------------------- /src/apb_regs.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_regs.sv -------------------------------------------------------------------------------- /src/apb_test.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/src/apb_test.sv -------------------------------------------------------------------------------- /test/synth_bench.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/test/synth_bench.sv -------------------------------------------------------------------------------- /test/tb_apb_cdc.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/test/tb_apb_cdc.sv -------------------------------------------------------------------------------- /test/tb_apb_demux.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/test/tb_apb_demux.sv -------------------------------------------------------------------------------- /test/tb_apb_regs.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/test/tb_apb_regs.sv -------------------------------------------------------------------------------- /test/tb_apb_regs.wave.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pulp-platform/apb/HEAD/test/tb_apb_regs.wave.do --------------------------------------------------------------------------------