HEX to ASSEMBLY MIPS 32BIT 00000024 44000007 44000004 440000
HEX to ASSEMBLY MIPS 32BIT
00000024
44000007
44000004
4400000E
 What is this assembly instruction? Is it illegal instruction or \"SLL\" instruction?
Solution
00000024: AND $zero $zero $zero
The above instruction is LOGICAL instruction, this AND is do a bitwise logical AND.
44000007: COP1 0x0000007
It is Reserved instruction and used to execute a coprocessor instruction.
44000004: COP1 0x0000004
It is also Reserved instruction and used to execute a coprocessor instruction.
4400000E: COP1 0x000000E
It is also reserved instruction and used for execute a coprocessor instruction.

