https://github.com/solarliner/eva_gen
Mini language targeting EVA assembly.
https://github.com/solarliner/eva_gen
Last synced: about 1 year ago
JSON representation
Mini language targeting EVA assembly.
- Host: GitHub
- URL: https://github.com/solarliner/eva_gen
- Owner: SolarLiner
- License: mit
- Created: 2020-02-04T21:35:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-05T07:17:08.000Z (over 6 years ago)
- Last Synced: 2025-02-12T13:54:18.029Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eva_gen
Mini language targeting EVA assembly.
## Structure
```
├── LICENSE
├── README.md
└── eva_gen ; Main package
├── common ; Common package
│ ├── __init__.py
│ ├── ast ; Ast manipulation sub package
│ │ ├── __init__.py
│ │ └── nodes.py
│ ├── back_end ; Code generation sub package
│ │ └── __init__.py
│ └── front_end ; Lexing/Parsing sub package
│ ├── __init__.py
│ ├── lexer.py
│ └── parser.py
├── debug.py ; Executables
└── test.py
```