10 lines
178 B
Python
10 lines
178 B
Python
from .insn_rv32i_i_type_load import *
|
|
|
|
"""
|
|
LB instruction
|
|
"""
|
|
|
|
class InsnLb(InsnRV32IITypeLoad):
|
|
def __init__(self, params):
|
|
super().__init__(params, 0b000, 1, True)
|