├── .gitignore ├── LICENSE ├── README.md ├── favorites.json ├── favorites.sh ├── images └── gui.png └── update_json.py /.gitignore: -------------------------------------------------------------------------------- 1 | mister_sd/ 2 | .vscode 3 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/README.md -------------------------------------------------------------------------------- /favorites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/favorites.json -------------------------------------------------------------------------------- /favorites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/favorites.sh -------------------------------------------------------------------------------- /images/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/images/gui.png -------------------------------------------------------------------------------- /update_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wizzomafizzo/MiSTer_Favorites/HEAD/update_json.py --------------------------------------------------------------------------------