MIPS Assembly: C Code to MIPS Conversion (g = h + A[8])
C code: g = h + A[8];
MIPS assembly code: lw $t0, 32($s3) # load A[8] into $t0 addu $s1, $s2, $t0 # add h and A[8], store result in g ($s1)
原文地址: https://www.cveoy.top/t/topic/mp41 著作权归作者所有。请勿转载和采集!