10 lines
181 B
Python
10 lines
181 B
Python
from .insn_rv32i_i_type_load import *
|
|
|
|
"""
|
|
LHU instruction
|
|
"""
|
|
|
|
class InsnLhu(InsnRV32IITypeLoad):
|
|
def __init__(self, params):
|
|
super().__init__(params, 0b101, 2, False)
|