Dreaming Deve1oper

ALU: Arithmetic Operations 본문

컴퓨터 구조

ALU: Arithmetic Operations

주현테크 2022. 3. 20. 15:09
Integer Arithmetic: Unsigned Division

 

D(2n bits) / V(n bits) = Q(n bits) ... R(n bits)

147(10010011, Dividend, 피젯수, 8bits, C-AQ Register, LOGICAL SHIFT LEFT)

/ 11(1011, diVisor, 젯수, 4bits, M Register)

 

= 13(1101, Quotient, 몫, 4bits, Q Regiester)

... 4(0100, Remainder, 나머지, 4bits, C-A Register)

 

 

ALU: Arithmetic Operations

 

 

Integer Arithmetic: Unsigned Division

'컴퓨터 구조' 카테고리의 다른 글

명렁어 세트  (0) 2022.03.26
CPU의 구조와 구성 요소  (0) 2022.03.26
부동 소수점 (BFPN)  (0) 2022.03.20
Integer Arithmetic / 정수 산술 연산 (Day 2)  (0) 2022.03.19
로직 연산 (Day 2)  (0) 2022.03.19
Comments