diff options
author | Mike Pall <mike> | 2012-06-08 20:54:47 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-06-08 21:14:33 +0200 |
commit | cccf7638989275e57377e2e25595213caacb7da3 (patch) | |
tree | 40aa697533f22adbd3cbef8f36148abb29ec0de1 /src/jit/dis_x64.lua | |
parent | 7266e27404caf007e3ff3fc4e204ea6d4c6a4670 (diff) | |
download | luajit-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.lua | 20 |
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 | |||
11 | local require = require | ||
12 | |||
13 | module(...) | ||
14 | |||
15 | local dis_x86 = require(_PACKAGE.."dis_x86") | ||
16 | |||
17 | create = dis_x86.create64 | ||
18 | disass = dis_x86.disass64 | ||
19 | regname = dis_x86.regname64 | ||
20 | |||