diff options
| author | Mike Pall <mike> | 2009-12-10 01:24:24 +0100 |
|---|---|---|
| committer | Mike Pall <mike> | 2009-12-10 01:24:24 +0100 |
| commit | fe36e4ac59f3408202be21fd94c4c540f23b1a6f (patch) | |
| tree | 684cd08b0ee09f06a3c7f61c8c8dc95bdc9f9182 /dynasm/dasm_x64.lua | |
| parent | 4523c46d10535ac6ff0716d22149e01e008dbce0 (diff) | |
| download | luajit-fe36e4ac59f3408202be21fd94c4c540f23b1a6f.tar.gz luajit-fe36e4ac59f3408202be21fd94c4c540f23b1a6f.tar.bz2 luajit-fe36e4ac59f3408202be21fd94c4c540f23b1a6f.zip | |
Add DynASM x64 module (non-functional). Add extra x64 registers.
Diffstat (limited to 'dynasm/dasm_x64.lua')
| -rw-r--r-- | dynasm/dasm_x64.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dynasm/dasm_x64.lua b/dynasm/dasm_x64.lua new file mode 100644 index 00000000..cf31258a --- /dev/null +++ b/dynasm/dasm_x64.lua | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | ------------------------------------------------------------------------------ | ||
| 2 | -- DynASM x64 module. | ||
| 3 | -- | ||
| 4 | -- Copyright (C) 2005-2009 Mike Pall. All rights reserved. | ||
| 5 | -- See dynasm.lua for full copyright notice. | ||
| 6 | ------------------------------------------------------------------------------ | ||
| 7 | -- This module just sets 64 bit mode for the combined x86/x64 module. | ||
| 8 | -- All the interesting stuff is there. | ||
| 9 | ------------------------------------------------------------------------------ | ||
| 10 | |||
| 11 | x64 = true -- Using a global is an ugly, but effective solution. | ||
| 12 | return require("dasm_x86") | ||
