https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1
The goal of the project is to create a virtual processor and an interpreter for running assembly code on that processor
https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1
assembler c parser vcpu
Last synced: 19 days ago
JSON representation
The goal of the project is to create a virtual processor and an interpreter for running assembly code on that processor
- Host: GitHub
- URL: https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1
- Owner: algosup
- License: mit
- Created: 2024-01-08T14:29:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-11T13:23:07.000Z (about 1 year ago)
- Last Synced: 2025-04-14T17:08:18.629Z (19 days ago)
- Topics: assembler, c, parser, vcpu
- Language: C
- Homepage:
- Size: 7.29 MB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 2023-2024-project-3-virtual-processor
## Description
The goal of the project is to create a virtual processor and an interpreter for running assembly code on
that processor.
The project will be developed in plain, portable, C language without the use of any external library besides
C standard libraries.## Documentation
[Project charter](https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1/blob/main/Documents/ProjectCharter.md) by Elone DELILLE
[Functional specifications](https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1/blob/main/Documents/FunctionalSpecifications.md) by Elone DELILLE
[Assembly2 documentation](https://algosup-t1.gitbook.io/asm2/) on GitBook by Elone DELILLE
[Technical specifications](https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1/blob/main/Documents/TechnicalSpecifications.md) by Thomas PLANCHARD
[Test plan](https://github.com/algosup/2023-2024-project-3-virtual-processor-team-1/blob/main/Documents/TestPlan.md) by Séréna BAVAROIS
[Postmortem](Documents/ManagementArtefacts/PostMortem.md) by the team
## Management
The management artifacts of this project are available on our [Jira project](https://virtual-processor.atlassian.net/jira/core/projects/VPT1/summary).
Here is a [Tutorial](/Documents/JiraTutorial.md) to help you to find specific documents. On this Jira project, you will find the task allocation, the timeline, and all the documents related to the management.
## Installation
To install the project, you need to clone the repository and build the project with the following commands:
### Windows
```bash
git clone
cd <2023-2024-project-3-virtual-processor-team-1/Src>
gcc interpreter.c -o interpreter.exe
.\interpreter.exe
```### MacOS
```bash
git clone
cd <2023-2024-project-3-virtual-processor-team-1/Src>
gcc interpreter.c -o interpreter
./interpreter
```## Team Members
| **Photo** | **Name** | **Role** | **GitHub and LinkedIn** |
|---|---|---|---|
|  | CUREL Clémentine | Project Manager | [GitHub](https://github.com/Clementine951) \| [LinkedIn](https://www.linkedin.com/in/clementine-curel/) |
|  | DELILLE Elone | Program Manager | [GitHub](https://github.com/HiNett) \| [LinkedIn](https://www.linkedin.com/in/elonedelille/) |
|  | PLANCHARD Thomas | Technical Leader | [GitHub](https://github.com/thomas-planchard) \| [LinkedIn](https://www.linkedin.com/in/thomas-planchard-461782221/) |
|  | LASSELIN Alexis | Software Engineer | [GitHub](https://github.com/AlexisLasselin) \| [LinkedIn](https://www.linkedin.com/in/alexis-lasselin-318649251/) |
|  | NAMIR Salaheddine | Software Engineer | [GitHub](https://github.com/T3rryc) \| [LinkedIn](https://www.linkedin.com/in/salaheddine-namir-3402471b8/) |
|  | BAVAROIS Séréna | Quality Assurance | [GitHub](https://github.com/NanaChocolat) \| [LinkedIn](https://www.linkedin.com/in/s%C3%A9r%C3%A9na-bavarois-619975218/) |