{"id":15060211,"url":"https://github.com/andymccall/commander-x16-development","last_synced_at":"2026-02-15T04:36:01.713Z","repository":{"id":244420027,"uuid":"811445324","full_name":"andymccall/commander-x16-development","owner":"andymccall","description":"Coding examples in 6502 assembler and C for the Commander X16 neoretro computer","archived":false,"fork":false,"pushed_at":"2025-06-10T14:56:59.000Z","size":89,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-14T07:02:00.471Z","etag":null,"topics":["6502","6502-assembly","assembler","c","commander-x16","commanderx16","retrocomputing"],"latest_commit_sha":null,"homepage":"https://andymccall.co.uk/","language":"Assembly","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andymccall.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-06T15:58:30.000Z","updated_at":"2025-06-10T15:08:21.000Z","dependencies_parsed_at":"2024-08-13T17:01:53.796Z","dependency_job_id":"cc7895a2-eae2-430f-be5f-38199381c8bf","html_url":"https://github.com/andymccall/commander-x16-development","commit_stats":null,"previous_names":["andymccall/commander-x16-development"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andymccall/commander-x16-development","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andymccall%2Fcommander-x16-development","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andymccall%2Fcommander-x16-development/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andymccall%2Fcommander-x16-development/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andymccall%2Fcommander-x16-development/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andymccall","download_url":"https://codeload.github.com/andymccall/commander-x16-development/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andymccall%2Fcommander-x16-development/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29469617,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T04:35:06.950Z","status":"ssl_error","status_checked_at":"2026-02-15T04:33:41.357Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","6502-assembly","assembler","c","commander-x16","commanderx16","retrocomputing"],"created_at":"2024-09-24T22:54:32.644Z","updated_at":"2026-02-15T04:36:01.698Z","avatar_url":"https://github.com/andymccall.png","language":"Assembly","funding_links":[],"categories":[],"sub_categories":[],"readme":"### VSCode Configuration\n\nEnsure the Commander X16 headers are incldued in the includePath:\n\n### Install VSCode\n\nInstall the following Extensions\n\nhttps://marketplace.visualstudio.com/items?itemName=ms-vscode.makefile-tools  \nhttps://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-extension-pack  \n\n### Install cc65\n\n```\nusername@host:~$ cd ~\nusername@host:~$ mkdir development\nusername@host:~$ cd development\nusername@host:~$ git clone git@github.com:cc65/cc65.git\nusername@host:~$ make\nusername@host:~$ make install PREFIX=~/development/tools/cc65\n```\n\nAdd cc65 bin to the path and add CC65_HOME environment variable:\n\n```\nusername@host:~$ vi ~/.profile\n```\n\nAdd the following at the bottom of the file:\n\n```\n# set PATH so it includes cc65 if it exists\nif [ -d \"$HOME/development/tools/cc65/bin\" ] ; then\n   PATH=\"$HOME/development/tools/cc65/bin:$PATH\"\nfi\n\n# Add CC65_HOME\nif [ -d \"$HOME/development/tools/cc65/share/cc65\" ] ; then\n   CC65_HOME=$HOME/development/tools/cc65/share/cc65\nfi\n```\n\nTest:\n\n```\nusername@host:~$ source ~/.profile\nusername@host:~$ cc65 --version\ncc65 V2.19 - Git 0541b65aa\n```\n\n### Install X16 Emulator\n\nhttps://github.com/X16Community/x16-emulator/releases/\n\nDownload the latest release.\n\n```\nusername@host:~$ wget https://github.com/X16Community/x16-emulator/releases/download/r48/x16emu_linux-x86_64-r48.zip\nusername@host:~$ unzip x16emu_linux-x86_64-r48.zip -d ~/development/tools/x16emu\n```\n\nAdd the emulator to path:\n\n```\nusername@host:~$ vi ~/.profile\n```\n\nAdd the following at the bottom of the file:\n\n```\n# set PATH so it includes x16emu if it exists\nif [ -d \"$HOME/development/tools/x16emu\" ] ; then\n   PATH=\"$HOME/development/tools/x16emu:$PATH\"\nfi\n```\n\nTest:\n\n```\nusername@host:~$ source ~/.profile\nusername@host:~$ x16emu\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandymccall%2Fcommander-x16-development","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandymccall%2Fcommander-x16-development","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandymccall%2Fcommander-x16-development/lists"}