├── .gitignore ├── LICENSE ├── README.md ├── atg.py ├── atg_import.py ├── images ├── atg.png └── import-coe.png └── tkSimpleDialog.py /.gitignore: -------------------------------------------------------------------------------- 1 | # ignore saved/exported data 2 | *.atg 3 | *.coe 4 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/README.md -------------------------------------------------------------------------------- /atg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/atg.py -------------------------------------------------------------------------------- /atg_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/atg_import.py -------------------------------------------------------------------------------- /images/atg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/images/atg.png -------------------------------------------------------------------------------- /images/import-coe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/images/import-coe.png -------------------------------------------------------------------------------- /tkSimpleDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patocarr/axi-traffic-gen/HEAD/tkSimpleDialog.py --------------------------------------------------------------------------------