Sha256: 8911acf782d361ef1fce276127a65bf071fbdac7cf63d38394b9184bed1f7412

Contents?: true

Size: 715 Bytes

Versions: 3

Compression:

Stored size: 715 Bytes

Contents

----------------------------------------------------------------------------
-- LuaJIT MIPSEL disassembler wrapper module.
--
-- Copyright (C) 2005-2017 Mike Pall. All rights reserved.
-- Released under the MIT license. See Copyright Notice in luajit.h
----------------------------------------------------------------------------
-- This module just exports the little-endian functions from the
-- MIPS disassembler module. All the interesting stuff is there.
------------------------------------------------------------------------------

local dis_mips = require((string.match(..., ".*%.") or "").."dis_mips")
return {
  create = dis_mips.create_el,
  disass = dis_mips.disass_el,
  regname = dis_mips.regname
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
immunio-2.0.4 lua-hooks/ext/luajit/src/jit/dis_mipsel.lua
immunio-2.0.3 lua-hooks/ext/luajit/src/jit/dis_mipsel.lua
immunio-2.0.2 lua-hooks/ext/luajit/src/jit/dis_mipsel.lua