From 20d57a6331b38b0ef198a65b87d0099a2e77aa24 Mon Sep 17 00:00:00 2001 From: Izaya Orihara Date: Sun, 11 Dec 2016 16:05:05 +1100 Subject: [PATCH] Added instructions for sasm.lua --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 472d501..18603fe 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # test3d-tools Tools for working with stuff from Test3D +## sasm.lua +A super simple mnemonics-to-opcodes and opcodes-to-mnemonics program. Usage: +### Compiling +``` +lua sasm.lua -c in > out +``` +### Decompiling +``` +lua sasm.lua -d out > in +```