aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/asmtest.lua
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-03-02 20:40:16 +0000
committerbloodstalker <thabogre@gmail.com>2018-03-02 20:40:16 +0000
commit75fb62903425f19d0519c45a4c9ec7dc5f986f59 (patch)
tree0f748b8f446c803db9c4ee177d88ae2eba2a4b26 /bruiser/lua-scripts/asmtest.lua
parentsome fixes for the jump table lua module (diff)
downloadmutator-75fb62903425f19d0519c45a4c9ec7dc5f986f59.tar.gz
mutator-75fb62903425f19d0519c45a4c9ec7dc5f986f59.zip
the skeletion code for the jump table struct is now working
Diffstat (limited to '')
-rw-r--r--bruiser/lua-scripts/asmtest.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/bruiser/lua-scripts/asmtest.lua b/bruiser/lua-scripts/asmtest.lua
new file mode 100644
index 0000000..529b7a7
--- /dev/null
+++ b/bruiser/lua-scripts/asmtest.lua
@@ -0,0 +1,6 @@
+function test()
+ print("running asmtest.lua")
+ for k,v in pairs(jmp_s_t) do print(k,v) end
+end
+
+test()