10 lines
163 B
Python
10 lines
163 B
Python
from .insn_rv32i_s_type import *
|
|
|
|
"""
|
|
SH instruction
|
|
"""
|
|
|
|
class InsnSh(InsnRV32ISType):
|
|
def __init__(self, params):
|
|
super().__init__(params, 0b001, 2)
|