Intermediate Combinational Circuits 11 구성 요소
Parity Generator and Checker
Generates an even-parity bit for 4 data bits with an XOR tree, then checks a received parity bit for single-bit transmission errors.
배울 내용
- Generate an even-parity bit with an XOR tree
- Detect single-bit errors by comparing parity
- See why XOR is the parity operation
작동 원리
An XOR tree combines the four data bits into an even-parity bit (high when an odd number of data bits are 1). The checker XORs the generated parity against a received parity bit; a mismatch lights the Error output, catching single-bit errors.
사용된 구성 요소
실제 응용 사례
Memory and bus error detection, serial protocols (UART parity), and storage integrity checks.