aboutsummaryrefslogtreecommitdiffstats
path: root/lib/LuaJIT/dynasm/dasm_x64.lua
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 16:39:02 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-25 16:39:02 -0400
commitbb283f4581ac07a4dd75325c4343d7f28b1ff376 (patch)
treef3892f8b77177149ae0294e7241d2ecaf58b64a6 /lib/LuaJIT/dynasm/dasm_x64.lua
parentd48436bbf5032484ff7d9c2667a63672e306ca18 (diff)
Fixed LuaJIT files
Diffstat (limited to 'lib/LuaJIT/dynasm/dasm_x64.lua')
-rw-r--r--lib/LuaJIT/dynasm/dasm_x64.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/LuaJIT/dynasm/dasm_x64.lua b/lib/LuaJIT/dynasm/dasm_x64.lua
new file mode 100644
index 0000000..e8bdeb3
--- /dev/null
+++ b/lib/LuaJIT/dynasm/dasm_x64.lua
@@ -0,0 +1,12 @@
+------------------------------------------------------------------------------
+-- DynASM x64 module.
+--
+-- Copyright (C) 2005-2017 Mike Pall. All rights reserved.
+-- See dynasm.lua for full copyright notice.
+------------------------------------------------------------------------------
+-- This module just sets 64 bit mode for the combined x86/x64 module.
+-- All the interesting stuff is there.
+------------------------------------------------------------------------------
+
+x64 = true -- Using a global is an ugly, but effective solution.
+return require("dasm_x86")