summaryrefslogtreecommitdiff
path: root/src/jit/dis_x64.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2012-06-08 20:54:47 +0200
committerMike Pall <mike>2012-06-08 21:14:33 +0200
commitcccf7638989275e57377e2e25595213caacb7da3 (patch)
tree40aa697533f22adbd3cbef8f36148abb29ec0de1 /src/jit/dis_x64.lua
parent7266e27404caf007e3ff3fc4e204ea6d4c6a4670 (diff)
downloadluajit-cccf7638989275e57377e2e25595213caacb7da3.tar.gz
luajit-cccf7638989275e57377e2e25595213caacb7da3.tar.bz2
luajit-cccf7638989275e57377e2e25595213caacb7da3.zip
Move lib/* to src/jit/*.
Diffstat (limited to 'src/jit/dis_x64.lua')
-rw-r--r--src/jit/dis_x64.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/jit/dis_x64.lua b/src/jit/dis_x64.lua
new file mode 100644
index 00000000..d95d7ded
--- /dev/null
+++ b/src/jit/dis_x64.lua
@@ -0,0 +1,20 @@
1----------------------------------------------------------------------------
2-- LuaJIT x64 disassembler wrapper module.
3--
4-- Copyright (C) 2005-2012 Mike Pall. All rights reserved.
5-- Released under the MIT license. See Copyright Notice in luajit.h
6----------------------------------------------------------------------------
7-- This module just exports the 64 bit functions from the combined
8-- x86/x64 disassembler module. All the interesting stuff is there.
9------------------------------------------------------------------------------
10
11local require = require
12
13module(...)
14
15local dis_x86 = require(_PACKAGE.."dis_x86")
16
17create = dis_x86.create64
18disass = dis_x86.disass64
19regname = dis_x86.regname64
20