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

[UCB CS61C] Lec14 Intro to Synchronous Digital Systems

by 봄여름가을 2024. 1. 12.
  • synchronous(central clock에 따라 coordinate된다), digital(discrete value에 따라 모든 값을 표현)

Switches

  • 1일 때 스위치를 닫고, 0일 때 연다.
  • 스위치 두 개를 가지고 AND와 OR을 표현 가능(boolean)

Transistors

  • 신호를 amplify하거나 switch하기 위한 반도체 장치
  • 3개의 terminal로 구성: Drain, Gate, Source
  • n-channel: open when voltage at G is low(close when $voltage(G) > voltage(S) + \epsilon$)
  • p-channel: closed when voltage at G is low(opens when $voltage(G) > voltage(S) + \epsilon$)
  • transistor circuit은 block diagram으로 나타내질 수 있으며, 이를 조합하여 higher-level block을 만들어낼 수 있다.

Signals and Waveforms

  • $T = 1/freq$
  • input의 값이 바뀌어서 이에 맞게 output이 바뀌기까지 delay가 발생하기도 한다

Circuits

  • SDS는 2가지의 circuits로 구성되어 있다.
    • Combinational Logic circuits: output은 input의 함수다.
    • State Elements: circuits that store information
  • clock은 circuits의 pulse를 통제하고, voltages는 원래 아날로그지만 0/1로 표현된다.

댓글