Computer/Architecture

Imm, unsigned

Detacher 2012. 7. 20. 17:27
Immediate value

걍 상수라고 보면 된다. 



unsigned
signed/unsigned - 컴퓨터 프로그램에서 수를 표기하는 자료형의 특성

값을 절대값으로 만들어버리는게 절대 아니라, 부호비트를 제거해 저장가능한 양수범위를 두배로 늘인것

signed 1111 1111(2) = -1(10)

unsigned 1111 1111(2) = 255(10)



'Computer > Architecture' 카테고리의 다른 글

C언어 -> MIPS instruction  (0) 2012.07.22
Arithmetic  (0) 2012.07.20
Program Counter -> Instruction Memory  (0) 2012.07.20
MIPS Instruction  (0) 2012.07.20
어셈블리어 용어  (0) 2012.07.20