diff options
Diffstat (limited to 'src/jit/dis_x64.lua')
| -rw-r--r-- | src/jit/dis_x64.lua | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/jit/dis_x64.lua b/src/jit/dis_x64.lua index 4db5fa1b..42ae48bf 100644 --- a/src/jit/dis_x64.lua +++ b/src/jit/dis_x64.lua | |||
| @@ -8,13 +8,10 @@ | |||
| 8 | -- x86/x64 disassembler module. All the interesting stuff is there. | 8 | -- x86/x64 disassembler module. All the interesting stuff is there. |
| 9 | ------------------------------------------------------------------------------ | 9 | ------------------------------------------------------------------------------ |
| 10 | 10 | ||
| 11 | local require = require | 11 | local dis_x86 = require((string.match(..., ".*%.") or "").."dis_x86") |
| 12 | 12 | return { | |
| 13 | module(...) | 13 | create = dis_x86.create64, |
| 14 | 14 | disass = dis_x86.disass64, | |
| 15 | local dis_x86 = require(_PACKAGE.."dis_x86") | 15 | regname = dis_x86.regname64 |
| 16 | 16 | } | |
| 17 | create = dis_x86.create64 | ||
| 18 | disass = dis_x86.disass64 | ||
| 19 | regname = dis_x86.regname64 | ||
| 20 | 17 | ||
