├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md └── tb ├── Makefile ├── apb.py ├── coverage.py ├── i2c.py └── test_i2c.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/README.md -------------------------------------------------------------------------------- /tb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/tb/Makefile -------------------------------------------------------------------------------- /tb/apb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/tb/apb.py -------------------------------------------------------------------------------- /tb/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/tb/coverage.py -------------------------------------------------------------------------------- /tb/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/tb/i2c.py -------------------------------------------------------------------------------- /tb/test_i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mciepluc/apbi2c_cocotb_example/HEAD/tb/test_i2c.py --------------------------------------------------------------------------------