Skip to content
Sahithyan's S2
Sahithyan's S2 — Computer Organization and Digital Design

SR Latch

Short for Set-Reset Latch. A fundamental memory element made from cross-coupled logic gates that can store one bit of data. Can be made with NOR or NAND gates.

NOR-based SR Latch

RSQQN

Uses active HIGH inputs.

SRChange
00No change
10 becomes 1
01 becomes 0
11Invalid state

NAND-based SR Latch

RSQQN

Uses active LOW inputs.

SRChange
00Invalid state
10 becomes 0
01 becomes 1
11No change

Both types have two stable states (Q=1 or Q=0) and maintain their state until inputs change. The invalid state should be avoided as it creates an undefined output.