이전 글에서 했던 R-format과 유사하다. #R-format / I-format의 차이점 or $8, $9, $10#R-format ori $11, $9, 0x8000#I-format constant : 범위는 -2¹⁵ ~ 2¹⁵-1 (-32768 ~ +32767), 이 범위를 넘어서면 out of range 에러가 나온다. address: 주소값, rs에서 더해지는 offset 등 rt : 연산 결과를 저장할 레지스터 (숫자 연산, load / store 명령어 시 사용) Sign Extention 16-bit로 표현된 -2를 32bit -2로 확장하면? 0000 0000 0000 0010 (2진수) = 2 (10진수) 1111 1111 1111 1101 -> 2의 1의보수 +1 ----------..