mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sh2 drc: RISC-V (RV64IM) code emitter, some work on MIPS64
This commit is contained in:
parent
aaea8e3ecd
commit
e7ee501075
21 changed files with 395 additions and 444 deletions
|
@ -127,7 +127,7 @@ static const struct insn special_insns[] = {
|
|||
{0x38, S_IMM_DT, "dsll"},
|
||||
{0x3A, S_IMM_DT, "dsrl"},
|
||||
{0x3B, S_IMM_DT, "dsra"},
|
||||
{0x3D, S_IMM_DT, "dsll32"},
|
||||
{0x3C, S_IMM_DT, "dsll32"},
|
||||
{0x3E, S_IMM_DT, "dsrl32"},
|
||||
{0x3F, S_IMM_DT, "dsra32"},
|
||||
};
|
||||
|
|
|
@ -29,7 +29,7 @@ void pemu_prep_defconfig(void)
|
|||
|
||||
void pemu_validate_config(void)
|
||||
{
|
||||
#if !defined(__arm__) && !defined(__aarch64__) && !defined(__mips__) && !defined(__i386__) && !defined(__x86_64__)
|
||||
#if !defined(__arm__) && !defined(__aarch64__) && !defined(__mips__) && !defined(__riscv__) && !defined(__riscv) && !defined(__i386__) && !defined(__x86_64__)
|
||||
PicoIn.opt &= ~POPT_EN_DRC;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue