Add LWU instruction
This commit is contained in:
parent
92e34efe0d
commit
bd76a47a52
|
@ -0,0 +1,9 @@
|
||||||
|
from .insn_rv64i_i_type_load import *
|
||||||
|
|
||||||
|
"""
|
||||||
|
LWU instruction
|
||||||
|
"""
|
||||||
|
|
||||||
|
class InsnLwu(InsnRV64IITypeLoad):
|
||||||
|
def __init__(self, params):
|
||||||
|
super().__init__(params, 4, 0b110, False)
|
Loading…
Reference in New Issue