├── .gitignore ├── LICENSE ├── README.md ├── adapter.py ├── card.py ├── logic ├── .gitignore ├── extract-logic-csv.py └── read-memcard-traffic.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/README.md -------------------------------------------------------------------------------- /adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/adapter.py -------------------------------------------------------------------------------- /card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/card.py -------------------------------------------------------------------------------- /logic/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | -------------------------------------------------------------------------------- /logic/extract-logic-csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/logic/extract-logic-csv.py -------------------------------------------------------------------------------- /logic/read-memcard-traffic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/logic/read-memcard-traffic.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamchamb/gc-memcard-adapter/HEAD/requirements.txt --------------------------------------------------------------------------------