CS计算机代考程序代写 #######################################################################################################

#######################################################################################################
# Format: Whatever follows a ‘#’ is a comment.
# Uncommented lines must start w/ 32 characters of 0’s and 1’s (i.e., an instruction or data word)
#######################################################################################################
# instructions start here (first line is address 0)
00000000110000111111100000100000 # ADD $31, $3, $6
00000000101001001010100000101010 # SLT $20, $31, $3, # $R20 = $31 < $3 ? 1 : 0; 00000000110000111111100000100000 # ADD $31, $20, $3 00000000101001001010100000101010 # SLT $19, $20, $6, # $R19 = $20 < $6 ? 1 : 0; 11111100000000000000000000000000 # EOP # Data goes below 01010101010101010101010101010101 # 01000101010100010001010101010101 #