forked from LuaJIT/LuaJIT
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contributed by infiWang.
- Loading branch information
Showing
11 changed files
with
3,650 additions
and
22 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
---------------------------------------------------------------------------- | ||
-- LuaJIT RISC-V 64 disassembler wrapper module. | ||
-- | ||
-- Copyright (C) 2005-2023 Mike Pall. All rights reserved. | ||
-- Released under the MIT license. See Copyright Notice in luajit.h | ||
---------------------------------------------------------------------------- | ||
-- This module just exports the default riscv little-endian functions from the | ||
-- RISC-V disassembler module. All the interesting stuff is there. | ||
------------------------------------------------------------------------------ | ||
|
||
local dis_riscv = require((string.match(..., ".*%.") or "").."dis_riscv") | ||
return { | ||
create = dis_riscv.create, | ||
disass = dis_riscv.disass, | ||
regname = dis_riscv.regname | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.