10 lines
317 B
Python
10 lines
317 B
Python
from InsnRV32ISType import *
|
|
|
|
"""
|
|
SW instruction
|
|
"""
|
|
|
|
class InsnSw(InsnRV32ISType):
|
|
def __init__(self, RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_ALIGNED_MEM):
|
|
super().__init__(RISCV_FORMAL_ILEN, RISCV_FORMAL_XLEN, RISCV_FORMAL_CSR_MISA, RISCV_FORMAL_ALIGNED_MEM, 0b010, 4)
|