{"id":15945833,"url":"https://github.com/benmcavoy/strawberryvm","last_synced_at":"2025-10-19T06:30:32.650Z","repository":{"id":217288090,"uuid":"743488913","full_name":"BenMcAvoy/StrawberryVM","owner":"BenMcAvoy","description":"A fantasy virtual machine with limits on resources.","archived":false,"fork":false,"pushed_at":"2024-07-02T11:20:56.000Z","size":124,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-29T08:11:17.387Z","etag":null,"topics":["assembly","fantasy-computer","fantasy-console","rust","virtual-machine"],"latest_commit_sha":null,"homepage":"https://docs.rs/strawberryvm","language":"Rust","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/BenMcAvoy.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}},"created_at":"2024-01-15T10:50:31.000Z","updated_at":"2024-11-13T15:43:56.000Z","dependencies_parsed_at":"2024-01-29T03:19:13.023Z","dependency_job_id":null,"html_url":"https://github.com/BenMcAvoy/StrawberryVM","commit_stats":{"total_commits":122,"total_committers":1,"mean_commits":122.0,"dds":0.0,"last_synced_commit":"9a845cc2b9761700813cb0ea88a70a76eabfac1c"},"previous_names":["benmcavoy/jellyvm"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMcAvoy%2FStrawberryVM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMcAvoy%2FStrawberryVM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMcAvoy%2FStrawberryVM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMcAvoy%2FStrawberryVM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BenMcAvoy","download_url":"https://codeload.github.com/BenMcAvoy/StrawberryVM/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237073118,"owners_count":19251030,"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":["assembly","fantasy-computer","fantasy-console","rust","virtual-machine"],"created_at":"2024-10-07T09:07:29.336Z","updated_at":"2025-10-19T06:30:27.336Z","avatar_url":"https://github.com/BenMcAvoy.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/BenMcAvoy/StrawberryVM\"\u003e\n    \u003cimg src=\"assets/logo-128x128.png\" alt=\"Logo\" width=\"128\" height=\"128\"\u003e\n  \u003c/a\u003e\n\n  \u003ch3 align=\"center\"\u003eStrawberryVM\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    A fantasy virtual machine with limits on resources.\n    \u003cbr /\u003e\n    \u003ca href=\"https://docs.rs/strawberryvm\"\u003e\u003cstrong\u003e« Explore the docs »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n    \u003cbr /\u003e\n    \u003ca href=\"https://github.com/BenMcAvoy/StrawberryVM/releases\"\u003eReleases\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/BenMcAvoy/StrawberryVM/issues\"\u003eReport Bugs\u003c/a\u003e\n    ·\n    \u003ca href=\"https://github.com/BenMcAvoy/StrawberryVM/issues\"\u003eRequest Features\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n\n\n## TODO\n- [x] Basic instructions\n- [x] Addition implementation\n- [x] Loading from a file\n- [x] Text to binary\n- [x] Assembler\n- [x] Refactoring\n- [ ] Turing completion\n\n# What's happening with the project?\nA new release may not be made for a moment as I am currently developing a programming language for the VM. The VM project is not dropped, I am just making somthing for it that is outside of this repo! Once it is functional it may either be a submodule or simply added into this repo.\n\n## Instructions\n| Name          | Arguments                                       | Description                                                                         |\n|---------------|-------------------------------------------------|-------------------------------------------------------------------------------------|\n| No Operation  | None                                            | Does nothing.                                                                       |\n| Push          | u8 (8-bit value to push)                        | Pushes an 8-bit value onto the stack.                                               |\n| Pop Register  | Register (destination register)                 | Pops a value from the stack into the specified register.                            |\n| Push Register | Register (source register)                      | Pushes the value of the specified register onto the stack.                          |\n| Add Stack     | None                                            | Adds the top two values on the stack.                                               |\n| Add Register  | Two Registers (operands)                        | Adds the values of two registers and stores the result in the destination register. |\n| Signal        | u8 (signal value)                               | Sends a signal with an 8-bit value.                                                 |\n| Jump          | u8 (target address)                             | Jumps to the specified address in the program.                                      |\n| ShiftLeft     | Register (target register)and u8 (shift amount) | Left shifts a specific register by a certain amount.                                |\n\n\n## Reserved symbols\n| Symbol | Use               |\n|--------|-------------------|\n| $      | Hexadecimal value |\n| %      | Binary value      |\n| ^      | Label value       |\n\n## Credits\nThis project is following along with the live streams by [TomMarksTalksCode](https://www.youtube.com/@TomMarksTalksCode) and this project would not have been possible without him. He can also be found on [GitHub](https://github.com/phy1um) and on his [website](https://coding.tommarks.xyz/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmcavoy%2Fstrawberryvm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenmcavoy%2Fstrawberryvm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmcavoy%2Fstrawberryvm/lists"}