{"id":13837024,"url":"https://github.com/lkesteloot/trs80","last_synced_at":"2025-04-06T07:10:12.264Z","repository":{"id":45527860,"uuid":"352420103","full_name":"lkesteloot/trs80","owner":"lkesteloot","description":"Suite of TRS-80 libraries, tools, and web apps in TypeScript","archived":false,"fork":false,"pushed_at":"2025-03-23T05:26:51.000Z","size":7817,"stargazers_count":55,"open_issues_count":2,"forks_count":8,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-03-28T00:04:49.000Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/lkesteloot.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-28T19:30:29.000Z","updated_at":"2025-03-13T15:23:01.000Z","dependencies_parsed_at":"2024-05-21T17:33:28.702Z","dependency_job_id":"c94e0f2a-790c-463f-99d6-c290cdd6152f","html_url":"https://github.com/lkesteloot/trs80","commit_stats":{"total_commits":1384,"total_committers":2,"mean_commits":692.0,"dds":0.006502890173410436,"last_synced_commit":"01207ebd6a1dca7d48b59b899565b2b82d0501cc"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lkesteloot%2Ftrs80","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lkesteloot%2Ftrs80/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lkesteloot%2Ftrs80/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lkesteloot%2Ftrs80/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lkesteloot","download_url":"https://codeload.github.com/lkesteloot/trs80/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247445668,"owners_count":20939958,"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","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":[],"created_at":"2024-08-04T15:00:59.529Z","updated_at":"2025-04-06T07:10:12.218Z","avatar_url":"https://github.com/lkesteloot.png","language":"TypeScript","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# TRS-80\n\nThis monorepo is a set of TRS-80-related libraries, tools, and web apps written\nin TypeScript. The subprojects are:\n\n* [z80-base](packages/z80-base): Utility functions and data structures for dealing with Z80 code.\n* [z80-inst](packages/z80-inst): Database of Z80 instructions, their parameters, and other metadata.\n* [z80-emulator](packages/z80-emulator): Z80 emulator.\n* [z80-test](packages/z80-test): Tests for Z80 emulators. Any Z80 emulator can be plugged in here, in case you want to test your own emulator.\n* [z80-disasm](packages/z80-disasm): Z80 disassembler.\n* [z80-asm](packages/z80-asm): Z80 assembler.\n* [trs80-logger](packages/trs80-logger): Logging functions for other TRS-80 libraries and tools.\n* [trs80-asm](packages/trs80-asm): Small library to help z80-asm and trs80-base work together.\n* [trs80-base](packages/trs80-base): Classes for reading and writing a variety of TRS-80 file formats.\n* [trs80-disasm](packages/trs80-disasm): Wrapper around z80-disasm that adds knowledge about the TRS-80, such as the location of ROM routines.\n* [trs80-emulator](packages/trs80-emulator): TRS-80 hardware emulator. Can emulate a Model I and Model III, read-only cassette, and floppy disk.\n* [trs80-emulator-web](packages/trs80-emulator-web): Classes for embedding the emulator in a web page.\n* [trs80-cassette](packages/trs80-cassette): Library for reading and writing cassette WAV files. Does a good job with cassettes that have been partially damaged and can't be read by other converter tools.\n* [trs80-cassette-player](packages/trs80-cassette-player): Tiny library for letting the TRS-80 emulator mount WAV and CAS files.\n* [trs80-cassette-webapp](packages/trs80-cassette-webapp): Web utility for reading cassette WAV files and converting them to CAS files.\n* [my-trs-80](packages/my-trs-80): Web app for hosting a virtual TRS-80 and its library of cassettes and floppy disks.\n* [trs80-tool](packages/trs80-tool): Command-line tool for manipulating TRS-80 files.\n* [trs80-ide](packages/trs80-ide): Web app for developing assembly language TRS-80 programs.\n* [forth](apps/forth): Interpreter for the Forth programming language.\n* [wolf](apps/wolf): A demo inspired by Wolfenstein 3D.\n\n# Build\n\nThis has been tested with `node` version 20 and `npm` version 10. You can\nget the latest version from [the node.js website](https://nodejs.org/).\n\nTo install dependencies (do this once per clone or pull):\n\n```sh\nnpm install\n```\n\nTo do a sequential build:\n\n```sh\nnpm run build --workspaces\n```\n\nOr to do a parallel build:\n\n```sh\nnpm run build\n```\n\nIf you're getting build errors, try getting a fresh clone, or clean\nup your local installations with:\n\n```sh\nrm -rf node_modules packages/*/node_modules\nnpm install\nnpm run clean --workspaces\n```\n\n# License\n\nCopyright \u0026copy; Lawrence Kesteloot, [MIT license](LICENSE).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkesteloot%2Ftrs80","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flkesteloot%2Ftrs80","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkesteloot%2Ftrs80/lists"}