From fe36e4ac59f3408202be21fd94c4c540f23b1a6f Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Thu, 10 Dec 2009 01:24:24 +0100 Subject: Add DynASM x64 module (non-functional). Add extra x64 registers. --- dynasm/dasm_x64.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dynasm/dasm_x64.lua (limited to 'dynasm/dasm_x64.lua') 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 @@ +------------------------------------------------------------------------------ +-- DynASM x64 module. +-- +-- Copyright (C) 2005-2009 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") -- cgit v1.2.3-55-g6feb