{"id":20026293,"url":"https://github.com/esraa-emary/vole-machine-language-simulator","last_synced_at":"2026-02-15T23:31:08.521Z","repository":{"id":262522829,"uuid":"879116493","full_name":"esraa-emary/Vole-Machine-Language-Simulator","owner":"esraa-emary","description":"The Vole-Machine-Simulator emulates machine language execution, providing an educational platform to explore low-level programming, machine instructions, and how computers process commands at a fundamental level.","archived":false,"fork":false,"pushed_at":"2025-02-01T13:15:47.000Z","size":197,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T02:51:13.506Z","etag":null,"topics":["clean-code","cplusplus","cpp","object-oriented-programming","oop"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/esraa-emary.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":"2024-10-27T02:54:00.000Z","updated_at":"2025-02-01T13:15:51.000Z","dependencies_parsed_at":"2024-11-12T22:38:10.124Z","dependency_job_id":null,"html_url":"https://github.com/esraa-emary/Vole-Machine-Language-Simulator","commit_stats":null,"previous_names":["esraa-emary/vole-machine-language-simulator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/esraa-emary/Vole-Machine-Language-Simulator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esraa-emary%2FVole-Machine-Language-Simulator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esraa-emary%2FVole-Machine-Language-Simulator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esraa-emary%2FVole-Machine-Language-Simulator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esraa-emary%2FVole-Machine-Language-Simulator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/esraa-emary","download_url":"https://codeload.github.com/esraa-emary/Vole-Machine-Language-Simulator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/esraa-emary%2FVole-Machine-Language-Simulator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271035997,"owners_count":24688535,"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-08-18T02:00:08.743Z","response_time":89,"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":["clean-code","cplusplus","cpp","object-oriented-programming","oop"],"created_at":"2024-11-13T09:06:07.184Z","updated_at":"2026-02-15T23:31:08.489Z","avatar_url":"https://github.com/esraa-emary.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vole Machine Language Simulator\n\n## Description:\n**In this machine, data is taken as a file of space separated chars representing the instructions, e.g. 10FF, then apply instructions(Machine Language).**\n\n## Machine Components:\n- **Register:** 16 register storage space for units of memory that are used to transfer data for immediate use.\n- **Memory:** 256 cell to store data.\n- **Instructions:** applying some operations in the machine.\n- **Machine:** run the whole program and link it together.\n\n## Machine Language:\n| **Opcode** | **Format** | **Description** |\n|--------|--------|-------------|\n| 1      | RXY    | **LOAD** the register R with the bit pattern found in the memory cell whose address is XY. |\n| 2      | RXY    | **LOAD** the register R with the bit pattern XY. |\n| 3      | RXY    | **STORE** the bit pattern found in register R in the memory cell whose address is XY. |\n| 4      | 0RS    | **MOVE** the bit pattern found in register R to register S. |\n| 5      | RST    | **ADD** the bit patterns in registers S and T as though they were **two’s complement representations** and leave the result in register R. |\n| 6      | RST    | **ADD** the bit patterns in registers S and T as though they **represented values in floating-point notation** and leave the floating-point result in register R. |\n| 7      | RST    | **OR** the bit patterns in registers S and T and place the result in register R. |\n| 8      | RST    | **AND** the bit patterns in registers S and T and place the result in register R. |\n| 9      | RST    | **EXCLUSIVE OR** the bit patterns in registers S and T and place the result in register R. |\n| A      | R0X    | **ROTATE** the bit pattern in register R one bit to the right X times. Each time place the bit that started at the low-order end at the high-order end. |\n| B      | RXY    | **JUMP** to the location in the memory cell at address XY if the bit pattern in register R is equal to the bit pattern in register number 0. Otherwise, continue with the normal sequence of execution. |\n| C      | 000    | **HALT** execution. |\n| D      | RXY    | **JUMP** to instruction in RAM cell XY if the content of register R is greater than (\u003e) the content of register 0. Data is interpreted as integers in two's complement notation. |\n\n## Chatbot for Vole Machine Instructions:\nExplore an interactive chatbot that explains Vole machine instructions in a user-friendly manner. This chatbot can help you better understand the opcode functionalities and how to use them effectively.\n\nYou can find the chatbot repository here: [Vole Machine ChatBot](https://github.com/NaghamProgrammer/Vole-Machine-ChatBot).\n\n## Contributing:\nIf you'd like to contribute to this repository, feel free to fork the project and create a pull request with your changes. Make sure to follow the coding standards and ensure your changes are well-documented.\n\n## GUI Version  \nLooking for a graphical interface? Check out the **Vole Machine Simulator GUI Version**: [GUI Version Repository.](https://github.com/esraa-emary/Vole-Machine-Language-Simulator-GUI)  \n\n## Authors:\n- **Esraa Emary Abd El-Salam**: [GitHub](https://github.com/esraa-emary) - [LinkedIn](https://www.linkedin.com/in/esraa-emary-b372b8303/)\n- **Mohammed Atef Abd El-Kader**: [GitHub](https://github.com/Mohammed-3tef) - [LinkedIn](https://www.linkedin.com/in/mohammed-atef-b0a408299/)\n- **Nagham Wael Mohammed El-Sayed**: [GitHub](https://github.com/NaghamProgrammer) - [LinkedIn](https://www.linkedin.com/in/nagham-wael-5aa70a318/)\n\n## License:\nThis project is licensed under the MIT License – see the [LICENSE](https://github.com/esraa-emary/Vole-Machine-Language-Simulator/blob/main/LICENSE) file for details.\n\n## Version: 7.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesraa-emary%2Fvole-machine-language-simulator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesraa-emary%2Fvole-machine-language-simulator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesraa-emary%2Fvole-machine-language-simulator/lists"}