This is my first time encountering bit encryption in Java. My methods:
int makeR(byte opcode, byte rs, byte rt, byte rd, byte shamt, byte funct)
Constructs a 32-bit integer from the component parts for an R-type instruction.
int makeI(byte opcode, byte rs, byte rt, short immed)
Constructs a...