From transistors to silicon — digital logic, hardware description languages, and how chips are actually made.
Semiconductor & digital electronics covers the design of digital logic and the hardware itself — from combinational and sequential circuits, through programmable logic (FPGAs) and custom silicon (ASICs), down to how a hardware description language becomes a physically fabricated chip.
Digital electronics starts with Boolean algebra and logic gates, which combine into combinational circuits (no memory — output depends only on current input) and sequential circuits (with memory, like flip-flops and registers, whose output depends on history too). Engineers describe this logic in a hardware description language (HDL) — Verilog or VHDL are the two dominant standards — rather than drawing individual gates, letting design tools simulate and synthesize complex behavior automatically.
That HDL design can target two very different implementation paths. An FPGA (field-programmable gate array) is reconfigurable hardware you can reprogram after manufacturing — fast to iterate, ideal for prototyping and lower-volume products. An ASIC (application-specific integrated circuit) is custom silicon designed for one purpose, requiring the full RTL-to-GDSII flow — synthesis, timing closure, place and route, and verification — before committing to an expensive, unchangeable fabrication run, but delivering far better performance, power, and per-unit cost at high volume. The physical fabrication itself (photolithography, doping, etching, deposition, repeated dozens of times to build up transistor layers on a silicon wafer) is one of the most precise manufacturing processes in existence, and downstream packaging turns a finished die into the chip that solders onto a circuit board.
Combinational logic (gates, multiplexers) and sequential logic (flip-flops, registers, state machines) — the foundation of all digital hardware.
Verilog and VHDL, used to describe, simulate, and synthesize digital designs rather than drawing individual gates by hand.
Reconfigurable programmable logic used for prototyping and lower-volume products, using toolchains like Xilinx Vivado or Intel Quartus.
The full custom-silicon design process: synthesis, timing closure, place and route, and verification before an unchangeable fabrication run.
The photolithography, doping, etching, and deposition steps that build up transistor layers on a silicon wafer.
Turning a finished silicon die into a physical chip that can be soldered onto a circuit board, balancing thermal, electrical, and cost trade-offs.
An FPGA is reconfigurable hardware — you can reprogram its logic after manufacturing, making it ideal for prototyping and lower-volume products. An ASIC is custom silicon designed for one specific purpose; it costs far more to design and fabricate (an unchangeable run) but delivers much better performance, power efficiency, and per-unit cost once you're producing at high volume.
Both are widely used industrial standards and the underlying concepts transfer between them. Verilog has a C-like, more compact syntax and is common in the US commercial/ASIC world; VHDL is more verbose and strongly typed, and is common in European, aerospace, and defense contexts. Many engineers end up learning both over a career; if starting fresh, check what's standard at target employers or in your coursework.
It's the sequence of steps that turns a register-transfer-level (RTL) hardware description into a manufacturable chip layout (GDSII file): logic synthesis (RTL to gates), placement and routing (arranging and wiring those gates on the die), timing closure (ensuring the design meets its target clock speed), and verification (functional and physical checks) before the design is sent to a fabrication facility.
Chips are built layer by layer on a silicon wafer through repeated cycles of photolithography (patterning with light through a mask), doping (introducing impurities to create transistor regions), etching, and deposition (adding material layers) — sometimes dozens of times to build up a modern chip's transistor and interconnect layers. After fabrication, wafers are tested, cut into individual dies, and packaged into the chips that mount onto circuit boards.
Most chip/hardware designers hold an electrical engineering or computer engineering degree, often with graduate-level coursework or specialization in digital design, VLSI, or computer architecture for ASIC-focused roles. FPGA-focused roles are somewhat more accessible from a general EE/CE background plus self-directed HDL projects.