one line of code at a time

Bits, Nibbles, and Bytes in Memory 본문

컴퓨터공부

Bits, Nibbles, and Bytes in Memory

oloc 2024. 8. 24. 11:17

 

Computers are state machines built from simple raw materials:

  • A transistor is an electronic switch with two states: ON and OFF
  • A capacitor stores electric enery of a positive or negative charge
  • These two building blocks can be paired to from a DRAM memory cell

Your computer likely has over 68,719,476,736 DRAM memory cells.

Each stores one bit of information. A bit has two states: 1 or 0.

The programs and data your computer processes are possible by combining and interpreting groups of bits as more meaningful units.. data abstraction!

 

Groupings of Bits

  • A computer system's word size is architecture dependent. Your laptop's 64-bit processor uses 64-bit words.
  • byte: 8 bits of memory
  • nibble: 4 bits

 

참고

 

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

MIPS Read and Write in Register file  (1) 2024.10.12
Review COMP 211: Systems Fundamentals  (0) 2024.08.25
nMos, pMos 트랜지스터  (0) 2024.08.24