{"id":41081757,"url":"https://github.com/blackchip-org/retro-cs","last_synced_at":"2026-01-22T13:41:01.461Z","repository":{"id":57554106,"uuid":"166711744","full_name":"blackchip-org/retro-cs","owner":"blackchip-org","description":"The retro-computing systems","archived":false,"fork":false,"pushed_at":"2022-09-23T01:09:34.000Z","size":625,"stargazers_count":16,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-20T13:28:47.581Z","etag":null,"topics":["6502","commodore-128","commodore-64","emulator","galaga","go","golang","mspacman","pacman","z80"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blackchip-org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-01-20T21:32:39.000Z","updated_at":"2024-06-08T00:27:00.000Z","dependencies_parsed_at":"2022-09-26T18:51:12.678Z","dependency_job_id":null,"html_url":"https://github.com/blackchip-org/retro-cs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blackchip-org/retro-cs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackchip-org%2Fretro-cs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackchip-org%2Fretro-cs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackchip-org%2Fretro-cs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackchip-org%2Fretro-cs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackchip-org","download_url":"https://codeload.github.com/blackchip-org/retro-cs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackchip-org%2Fretro-cs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28663825,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["6502","commodore-128","commodore-64","emulator","galaga","go","golang","mspacman","pacman","z80"],"created_at":"2026-01-22T13:40:58.245Z","updated_at":"2026-01-22T13:41:01.449Z","avatar_url":"https://github.com/blackchip-org.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# retro-cs\n\n[![Build Status](https://travis-ci.com/blackchip-org/retro-cs.svg?branch=master)](https://travis-ci.com/blackchip-org/retro-cs) [![GoDoc](https://godoc.org/github.com/blackchip-org/retro-cs?status.svg)](https://godoc.org/github.com/blackchip-org/retro-cs)\n\nThe Retro-Computing Systems.\n\nInspired by the Vintage Computer Club. This project is no longer being actively\nworked on but that could always change. Feel free to contact me for more\ninformation.\n\nSee my [VCF West 2022](https://vcfed.org/) presentation here:\n\n[![Adventures in Emulation](https://img.youtube.com/vi/VRFtXx4i8lo/0.jpg)](https://www.youtube.com/watch?v=VRFtXx4i8lo \"Adventures In Emulation\")\n\n\nSee my [VCF East 2022](https://vcfed.org/) class here:\n\n[![Writing an Emulator](https://img.youtube.com/vi/kq0_PiOVN0E/0.jpg)](https://www.youtube.com/watch?v=kq0_PiOVN0E \"Writing an Emulator\")\n\nSee my [MAGFest 2020](https://www.magfest.org/) presentation on this emulator here:\n\n[![Adventures in Writing an Emulator](https://img.youtube.com/vi/kO0rGXFjIA8/0.jpg)](https://www.youtube.com/watch?v=kO0rGXFjIA8 \"Adventures in Writing an Emulator\")\n\n\nNotes on the systems in progress:\n\n- [Commodore 64](doc/c64.md)\n- [Commodore 128](doc/c128.md)\n- [Pac-Man](doc/pacman.md)\n  - and Ms. Pac-Man\n- [Galaga](doc/galaga.md)\n\nDevelopment notes:\n\n- [Memory](doc/memory.md)\n- [MOS Technology 6502 series processor](doc/m6502.md)\n- [Pac-Man](https://github.com/blackchip-org/retro-cs/blob/master/doc/pacman.md#development-notes)\n- [Zilog Z80 processor](doc/z80.md)\n\n## Requirements\n\nGo and SDL2 are needed to build the application.\n\n### Linux\n\nInstall SDL with:\n\n```bash\nsudo apt-get install libsdl2{,-image,-mixer,-ttf,-gfx}-dev\n```\n\nInstall go from here:\n\nhttps://golang.org/dl\n\n### macOS\n\nInstall go and SDL with:\n\n```bash\nbrew install go sdl2{,_image,_mixer,_ttf,_gfx} pkg-config\n```\n\n### Windows\n\nIt's never easy on Windows. Go needs to use mingw to compile the SDL bindings. Follow the instructions on the go-sdl2 page:\n\nhttps://github.com/veandco/go-sdl2#requirements\n\nInstall go from here:\n\nhttps://golang.org/dl\n\n### ROMs\n\nROMs are not included in this repository. Follow the directions for each system to obtain the proper ROMs or ask for the resource pack.\n\n\n## Installation\n\n```\ngo get github.com/blackchip-org/retro-cs/...\n```\n\n## Run\n\n```\n~/go/bin/retro-cs -s \u003csystem\u003e\n```\n\nwhere `\u003csystem\u003e` is one of the following:\n\n- `c64`\n- `c128`\n- `galaga`\n- `mspacman`\n- `pacman`\n\nUse the `-m` flag to enable the [monitor](doc/monitor.md).\n\nEscape key to exit if in full screen mode.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackchip-org%2Fretro-cs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackchip-org%2Fretro-cs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackchip-org%2Fretro-cs/lists"}