1

次の疑似命令を実装するために使用できる RISC-V 命令の最小セットを提供します。

not x5, x6   // bit-wise invert

解決:

xori x5, x6, -1
4

1 に答える 1