학교에서 들은 컴퓨터 구조 강의 내용을 복습하면서 작성한 글입니다.April 3, 2024 8:04 PM Instruction Encoding Exampleassembly instructions: addi $t0, $t1, 0x123machine code0010 0001 0010 10000000 0001 0010 0011opcode(명령어 종류)reg 9reg 8immediateaddi$t1$t00x0123→ 0x21280123명령어들은 machine code라고 불리는 binary로 encoded 된다MIPS instructions: 32bitRegister number$t0 - $t7: 8-15$t8 - $t9: 24-25$s0 - $s7: 16-23MIPS R-format Instructions: ..