I was given a 32 bit binary number and told to convert to mips instruction, integer, and four-character ASCII string. I converted to dec and instruction, no prob., but ascii string giving me trouble. I have a table that provides ascii values, but I cannot get a four character word from this number:
0000 0010 0001 0001 0100 0000 0010 0000
I would really like if someone could give brief explanation on how to convert, the number should return 4 characters that should have some meaning. I don't need any code, just by hand conversion.
To see if I am misinterpreting the questions, here it is in its entirety:
A 32-bit word has no inherent meaning and can be represented in a number of equally valid ways. Decode the following into the binary representation, the instruction, the positive integer, and the four-character ASCII string.
0000 0010 0001 0001 0100 0000 0010 0000
ASCII string?
Instruction? add $t0, $s0, $s1
Positive integer? 34,684,960
The binary rep. was given, the instruction/int I entered.