{"id":33118953,"url":"https://github.com/nitros9project/toolshed","last_synced_at":"2025-11-19T21:01:38.643Z","repository":{"id":194681028,"uuid":"691338838","full_name":"nitros9project/toolshed","owner":"nitros9project","description":"A collection of software tools for TRS-80 Color Computer hobbyists.","archived":false,"fork":false,"pushed_at":"2025-11-08T10:59:06.000Z","size":62643,"stargazers_count":8,"open_issues_count":4,"forks_count":11,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-11-08T12:22:28.801Z","etag":null,"topics":["retrocomputing"],"latest_commit_sha":null,"homepage":"","language":"C","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/nitros9project.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":"2023-09-14T01:32:40.000Z","updated_at":"2025-10-31T09:35:23.000Z","dependencies_parsed_at":"2023-10-10T16:00:59.218Z","dependency_job_id":"b04f91cf-c9d1-44d9-995b-2edfcf1d5138","html_url":"https://github.com/nitros9project/toolshed","commit_stats":null,"previous_names":["boisy/toolshed-new"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/nitros9project/toolshed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitros9project%2Ftoolshed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitros9project%2Ftoolshed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitros9project%2Ftoolshed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitros9project%2Ftoolshed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nitros9project","download_url":"https://codeload.github.com/nitros9project/toolshed/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nitros9project%2Ftoolshed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285327645,"owners_count":27152947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-19T02:00:05.673Z","response_time":65,"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":["retrocomputing"],"created_at":"2025-11-15T04:00:23.594Z","updated_at":"2025-11-19T21:01:38.631Z","avatar_url":"https://github.com/nitros9project.png","language":"C","funding_links":[],"categories":["Software Development"],"sub_categories":["Tools"],"readme":"# ToolShed\n\nToolShed is a cornucopia of tools and source code for the Tandy Color Computer and Dragon micro.\n\nThe repository contains:\n- os9 and decb tools for copying files to/from host file systems to disk images.\n- source code for CoCo and Dragon system ROMs.\n- source code for custom ROMs like HDB-DOS, DriveWire DOS, and SuperDOS.\n- source code for the Microware C compiler for cross-hosted compilation (currently needs work).\n- other miscellaneous tools.\n- assemblers to perform cross-development from Windows, Linux, and macOS (see the NOTE below on assembler recommendations).\n\n**NOTE:** while the venerable 6809 cross-assembler, mamou, is part of the repository, it is only kept for historical value. Everyone should really be using William Astle's excellent LWTOOLS which contains the *lwasm* 6809 assembler and *lwlink* linker. [Download the latest version of the source here.](http://lwtools.projects.l-w.ca)\n\nFind the documentation for some of the command in Toolshed's [Wiki](https://github.com/nitros9project/toolshed/wiki)\n## Building on Windows\n\nThe recommended build environment is [MingW32 or MingW64](http://mingw.org/), [MSYS2](http://msys2.github.io/), or the [WSL subsystem for Windows 10+](https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux).\n\nThe easiest way to install MingW is using a mingw-get-inst.*.exe [from here](http://mingw.org/wiki/Getting_Started).\n\nInside MingW, make sure you have \"make\" installed. There are several options, but the simpler mingw-make should be good enough:\n```\n$ mingw-get install mingw-make\n```\n\nEnter the unpackaged toolshed directory and run:\n```\n$ make -C build/unix install CC=gcc\n```\n\n## Building on Linux\n\nTo build cocofuse you will need to have FUSE libraries and header files installed. On Debian-based systems:\n```\n$ sudo apt-get install libfuse-dev\n```\n\nEnter the unpackaged toolshed directory and run:\n```\n$ make -C build/unix install\n```\n\n## Building on macOS\n\nTo build cocofuse for the Mac, you will need to have FUSE libraries and header files installed.\n\nThe best way to do this is to first [visit the Homebrew page](https://brew.sh) and use the simple one-line ruby command to install Homebrew on your Mac.\n\nOnce that's done, you can use the brew command to install macfuse (`osxfuse` has been succeeded by `macfuse` as of version 4.0.0.):\n\n```\nbrew install macfuse\n```\n\nIf you have previously install osxfuse, you can use brew command to uninstall `oxsfuse` and install `macfuse`\n\n```\nbrew uninstall osxfuse\nbrew install macfuse\n```\n\nThen, enter the unpackaged toolshed directory and run:\n```\n$ make -C build/unix install\n```\n\n## Building HDB-DOS and DriveWire DOS\n\nIt is highly recommended to have [LWTOOLS](http://lwtools.projects.l-w.ca/) installed.  You will also need \"makewav\" from ToolShed installed to build WAV files.  See hdbdos/README.txt and the makefiles for different build options.\n\nTo build all default flavors:\n```\n$ make -C dwdos\n$ make -C hdbdos\n$ make -C superdos\n```\n\nInstead of LWTOOLS the deprecated mamou can still be used (YMMV):\n```\n$ make -C dwdos AS=\"mamou -r -q\"\n$ make -C hdbdos AS=\"mamou -r -q\"\n```\n\nNote that SuperDOS still builds with mamou by default.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitros9project%2Ftoolshed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnitros9project%2Ftoolshed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnitros9project%2Ftoolshed/lists"}