commit 957dd0d4dc6cb6d7be581e427751527051146c2b
parent 26da1a36ce0af3aea605beb209f992dbeb85f15e
Author: Samdal <samdal@protonmail.com>
Date: Sat, 20 Apr 2024 14:17:16 +0200
add "--allow-syscall" to help section
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -31,9 +31,10 @@ command line options:
'--quiet' : disables printing inbetween operations
'--step' : steps through the program [press enter]
- '--verbose-parser' : prints opcodes and parameters of the awatalk
+ '--verbose-parser' : prints opcodes and parameters of the awatalk
'--verbose-interpreter' : prints current instruction and stack while executing
'--verbose' : enables both of the above
+ '--allow-syscall' : enables syscalls
'--help' : prints this message
diff --git a/main.c b/main.c
@@ -9,6 +9,7 @@ void print_help() {
printf("\t'--verbose-parser' : prints opcodes and parameters of the awatalk\n");
printf("\t'--verbose-interpreter' : prints current instruction and stack while executing\n");
printf("\t'--verbose' : enables both of the above\n");
+ printf("\t'--allow-syscall' : enables syscalls\n");
printf("\t\n");
printf("\t'--help' : prints this message\n");
printf("\t\n");