{"id":17329623,"url":"https://github.com/oguzhand95/tis100","last_synced_at":"2026-05-01T01:31:38.773Z","repository":{"id":58085945,"uuid":"528974753","full_name":"oguzhand95/tis100","owner":"oguzhand95","description":"A tool and package to parse TIS100 assembly programs.","archived":false,"fork":false,"pushed_at":"2022-08-28T18:03:56.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-27T05:43:13.208Z","etag":null,"topics":["assembly","golang","parser","tis100"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oguzhand95.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":"2022-08-25T18:34:45.000Z","updated_at":"2022-08-28T17:56:24.000Z","dependencies_parsed_at":"2022-08-29T20:42:19.895Z","dependency_job_id":null,"html_url":"https://github.com/oguzhand95/tis100","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/oguzhand95/tis100","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oguzhand95%2Ftis100","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oguzhand95%2Ftis100/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oguzhand95%2Ftis100/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oguzhand95%2Ftis100/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oguzhand95","download_url":"https://codeload.github.com/oguzhand95/tis100/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oguzhand95%2Ftis100/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32482460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: 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":["assembly","golang","parser","tis100"],"created_at":"2024-10-15T14:48:58.789Z","updated_at":"2026-05-01T01:31:38.757Z","avatar_url":"https://github.com/oguzhand95.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TIS100\n\nA tool and package to parse TIS100 assembly programs.\n\n## CLI Usage\n\n### Command `tis100 parse \u003cpath\u003e`\n\nParses the TIS100 assembly program in the given `\u003cpath\u003e`, and prints the AST result into standard output.\n\n```\nMOV 10, ACC\nMOV ACC, DOWN\n```\n\n```bash\n-\u003e tis100 parse ~/program.asm\n```\n\nThe result for the above execution looks like this;\n\n```yaml\ninstructions:\n  - mov:\n      source:\n        literal: 10\n      destination:\n        register: ACC\n  - mov:\n      source:\n        register: ACC\n      destination:\n        register: DOWN\n```\n\n## Package Usage\n\n```bash\ngo get github.com/oguzhand95/tis100\n```\n\n```go\nimport \"github.com/oguzhand95/tis100/parser\"\n\nfunc main() {\n    b, err := os.ReadFile(c.Path)\n    if err != nil {\n        return fmt.Errorf(\"failed to open the file in path %s: %w\", c.Path, err)\n    }\n\n    ast, err := parser.Parse(bytes.NewReader(b), filepath.Base(c.Path))\n    if err != nil {\n        return fmt.Errorf(\"failed to parse the program: %w\", err)\n    }\n\t\n    // Use ast struct to do some stuff \n}\n```\n\n# Thanks\n\n- Thanks [Zachtronics](https://www.zachtronics.com/) for developing this awesome [puzzle game](https://store.steampowered.com/app/370360/TIS100/)! ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foguzhand95%2Ftis100","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foguzhand95%2Ftis100","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foguzhand95%2Ftis100/lists"}