2016-05-28 03:03:18 +00:00
|
|
|
------------------------------------------------------------------------------
|
|
|
|
-- DynASM MIPS64 module.
|
|
|
|
--
|
2017-01-17 11:41:05 +00:00
|
|
|
-- Copyright (C) 2005-2017 Mike Pall. All rights reserved.
|
2016-05-28 03:03:18 +00:00
|
|
|
-- See dynasm.lua for full copyright notice.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
-- This module just sets 64 bit mode for the combined MIPS/MIPS64 module.
|
|
|
|
-- All the interesting stuff is there.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
mips64 = true -- Using a global is an ugly, but effective solution.
|
|
|
|
return require("dasm_mips")
|