我想将我的教育用途模拟器从 Y86 更改为 RISC-V。我喜欢 Y86 组合的 hexacode+listing 文件,比如
| # Execution begins at address 0
0x000: | .pos 0
0x000: 30f400010000 | init: irmovl Stack, %esp # Set up stack pointer
0x006: 30f500010000 | irmovl Stack, %ebp # Set up base pointer
0x00c: 8024000000 | call Main # Execute main program
0x011: 00 | halt # Terminate program
RISC-V 有类似的东西吗?