aboutsummaryrefslogtreecommitdiff
path: root/dynasm/dasm_mips64.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2016-05-28 05:03:18 +0200
committerMike Pall <mike>2016-05-28 05:09:24 +0200
commite3c4c9af0f07a114fb754fed6ac358a102f49e2f (patch)
tree36ae43b6bd84fd339c3f947a5c8dbc0f77042247 /dynasm/dasm_mips64.lua
parent5e2b609b3f6145fa9fe0b396b76ff76f732c6fe6 (diff)
downloadluajit-e3c4c9af0f07a114fb754fed6ac358a102f49e2f.tar.gz
luajit-e3c4c9af0f07a114fb754fed6ac358a102f49e2f.tar.bz2
luajit-e3c4c9af0f07a114fb754fed6ac358a102f49e2f.zip
DynASM/MIPS: Add missing MIPS64 instructions.
Contributed by Djordje Kovacevic and Stefan Pejic from RT-RK.com. Sponsored by Cisco Systems, Inc.
Diffstat (limited to '')
-rw-r--r--dynasm/dasm_mips64.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/dynasm/dasm_mips64.lua b/dynasm/dasm_mips64.lua
new file mode 100644
index 00000000..94f21921
--- /dev/null
+++ b/dynasm/dasm_mips64.lua
@@ -0,0 +1,12 @@
1------------------------------------------------------------------------------
2-- DynASM MIPS64 module.
3--
4-- Copyright (C) 2005-2016 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 MIPS/MIPS64 module.
8-- All the interesting stuff is there.
9------------------------------------------------------------------------------
10
11mips64 = true -- Using a global is an ugly, but effective solution.
12return require("dasm_mips")