Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marceldobehere/maal-marcels-amazing-assembly-language
This tool will compile MAAL into MAALB (Bytecode)
https://github.com/marceldobehere/maal-marcels-amazing-assembly-language
compiler csharp custom-language language maab maal
Last synced: 2 months ago
JSON representation
This tool will compile MAAL into MAALB (Bytecode)
- Host: GitHub
- URL: https://github.com/marceldobehere/maal-marcels-amazing-assembly-language
- Owner: marceldobehere
- License: agpl-3.0
- Created: 2022-10-23T00:41:05.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T21:25:21.000Z (8 months ago)
- Last Synced: 2024-05-08T22:32:52.310Z (8 months ago)
- Topics: compiler, csharp, custom-language, language, maab, maal
- Language: C#
- Homepage:
- Size: 1.03 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MAAL-Marcels-Amazing-Assembly-Language
This tool compiles MAAL into MAALB (Bytecode)The Bytecode can be interpreted in [Masl OS](https://github.com/marceldobehere/MaslOS).
It also has a [Windows Interpreter](https://github.com/marceldobehere/MAAB-CPP-Interpreter).
## Example
```
loc MAIN:
print "Hello, world!";
exit;
```[More Examples can be found here](https://github.com/marceldobehere/MAAL-Marcels-Amazing-Assembly-Language/tree/master/MAAL/Examples)
## Documentation
[Docs for MAAL](MAAL/Docs/MAAL.md)
[Docs for MAAB](MAAL/Docs/MAAB.md)
## Windows C++ Interpreter
https://github.com/marceldobehere/MAAB-CPP-Interpreter
### EXE Arguments
```
[EXE PATH] [FILE PATH] (-yes_debug_out) (-yes_time_out)
```#### Yes Debug out
This flag will show debug infos like the parsed tokens and bytes#### Yes Time out
This flag will show timer stats.