fmash16 / riscv_emulator

A basic working RISCV emulator written in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect bitmask in function "imm_U"

crossrw opened this issue · comments

Contents of line 71 are now:

return (int64_t)(int32_t)(inst & 0xfffff999);

should be in my opinion:

return (int64_t)(int32_t)(inst & 0xfffff000);