请在 下方输入 要搜索的题目:

For the following C statement,A = C[0] << 4;write a minimal sequence of RISC-V assembly instructions that performs the identical operation. Assume x6 = A, and x17 is the base address of C.


A、ld x17, 0(x6)slli x6, x6, 4;

B、ld x6, 0(x17)slli x6, x6, 4;

C、sd x17, 0(x6)slli x6, x6, 4;

D、sd x6, 0(x17)slli x6, x6, 4

发布时间:2024-07-20 22:29:10
推荐参考答案 ( 由 百万题库网 官方老师解答 )
答案:ld x6, 0(x17)slli x6, x6, 4
专业技术学习
专业技术学习