본문 바로가기
공부/컴퓨터 구조

컴퓨터 구조1 개요

by 맑은청이 2020. 5. 26.
728x90
반응형

공부할 거

CPU, memory system, I/O device and bus

Cache, internal&external memory,

interconnection mechanism,computer arithmetic and CPU structure

 

 

컴퓨터 구조의 중요성

-application programs, compilers, operating systems, 기타등등 performance 를 수행할 때 컴퓨터 구조를 이해하는 것이 굉장히 중요

 

 

Architecture: 추상적 ex)Instruction set, I/O mechanisms, addressing techniques 등등

Organization : 실제구현 ex) Control signals, interfaces, memory technology

 

Intel x89 family share the same basic architecture 

Organization은 버전마다 다름

 

 

 

Structure & Function 

Structure은 각각의 요소들이 어떻게 상호작용하는지

Function은 각각 어떻게 구조의 부분으로서 동작하는지

 

 

 

All computer functions

-Data processing

-Data storage

-Data movement

-Control

 

컴퓨터 구조

 -Central Processing Unit(CPU) : 연산,기억,제어,해석을 담당하는 중앙처리장치입니다. 간단히 프로세서라고 이야기하기도 합니다.

- Main Memory : data 를 저장합니다.

- I/O : computer 와 external environment 사이에서 data 이동

- System interconnection : CPU,Main Memory,I/O 사이에서의 통신을 제공하는 mechanism. 대표적으로 System bus 

 

 

 

CPU의 Structure

-Control Unit : 컴퓨터와 CPU의 동작 제어 (Sequencing Logic, Control Unit Registers and Decoders,Control Memory) 

-Arithmetic and Logic Unit(ALU) : Performs the computer's data processing function

-Registers : CPU 내부의 기억소자

-CPU Interconnection : 위에서 말한 요소들 간에 통신

 

728x90
반응형

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

컴퓨터구조5 Internal Memory  (0) 2020.06.12
컴퓨터구조4 Cache Memory  (0) 2020.06.05
컴퓨터구조3 CPU  (0) 2020.05.29
컴퓨터구조2 Process  (0) 2020.05.27
Arithmetic & Logic Unit  (0) 2020.05.25