Design a combinational logic circuit that replicates the address-decoding behavior required to activate a specific memory module on a motherboard. The circuit must monitor two control signals—the Address Match line and the Read Enable line—and assert the output high if and only if both signals are simultaneously asserted.
Constraints
Behavioral Reference
| Address Match | Read Enable | Output (Module Active) |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |