🇧🇩 MIPS instruction = ৩২টা 0/1 সংখ্যার সারি।
বাম থেকে ডানে: bit 31 → bit 0।
[31:26] = bit 31 থেকে 26 = 6 bits = opcode
Python slice: s[0:6] এর মতো।
🇺🇸 32 bits numbered 31 (left) → 0 (right).
[x:y] = bits x down to y (inclusive).
[31:26] = 6 bits = opcode field
Like Python: instr[0:6]