An open API service indexing awesome lists of open source software.

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.

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
```