docs update

This commit is contained in:
ALittlePatate
2023-06-01 15:49:50 +02:00
committed by GitHub
parent 9188b3f296
commit b9c4927f01

View File

@@ -1,6 +1,6 @@
# pasm
PASM is a Scripting language that i made for fun with a few constraints :
- the interpreter should be as small as possible and written without the CRT (currently 13ko WITH CRT)
- the interpreter should be as small as possible and written without the CRT (currently 17ko WITH CRT)
- the language should be able to call Windows API's
PASM is meant for being used in C2 agents as its interpreter is small.
@@ -14,7 +14,6 @@ PASM is in a working state, the [keylogger example](#code-examples) works like a
TODO :
- code refactor (still bad practices)
- get rid of the CRT (so we can get a smaller PE)
- write the docs
# Documentation
The documentation is available [here](https://github.com/ALittlePatate/pasm/blob/main/docs/documentation.md), it *should* cover everything you have to know before writing scripts.