What's the difference between normal opcodes and opcodes with their MSB (Most Significant Bit) set?
Example:
0036 5E000001 [4] return 1 2
003A 1E008000 [5] return 0 1
The first opcode (0x5E/1011110) has its MSB set and the second opcode (0x1E/0011110) hasn't.
Edit: Corrected 'byte' to 'bit', duh.