mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-05-13 03:00:26 -04:00
Fix riscv asm parser.
This commit is contained in:
@@ -69,7 +69,7 @@ Register: Register = {
|
||||
r"s[2-9]" => Register(16 + <>[1..].parse::<u8>().unwrap()),
|
||||
r"s1[0-1]" => Register(16 + <>[1..].parse::<u8>().unwrap()),
|
||||
r"t[0-2]" => Register(5 + <>[1..].parse::<u8>().unwrap()),
|
||||
r"t[3-6]" => Register(28 + <>[1..].parse::<u8>().unwrap()),
|
||||
r"t[3-6]" => Register(25 + <>[1..].parse::<u8>().unwrap()),
|
||||
}
|
||||
|
||||
OffsetRegister: Argument = {
|
||||
|
||||
Reference in New Issue
Block a user