Skip to content

Commit

Permalink
parser: fix lbu and lhu
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoRiether committed Jul 18, 2023
1 parent 80591fd commit 6fb651f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/text/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ where
"lb" => load_madness!(Lb),
"lh" => load_madness!(Lh),
"lw" => load_madness!(Lw),
"lbu" => Lbu(reg!(), imm!(), paren!(reg!())),
"lhu" => Lhu(reg!(), imm!(), paren!(reg!())),
"lbu" => load_madness!(Lbu),
"lhu" => load_madness!(Lhu),
"addi" => Addi(reg!(), reg!(), imm!()),
"slti" => Slti(reg!(), reg!(), imm!()),
"sltiu" => Sltiu(reg!(), reg!(), imm!()),
Expand Down

0 comments on commit 6fb651f

Please sign in to comment.