디코더,decoder




via kornorms : decod at 2023-10-24
{
디코딩,decoding
디코딩 decoding
decoding

디코더,decoder
디코더 decoder
decoder

디코드,decode
디코드 decode
decode
}


같은 영단어...'decoder'

여기엔 EE/논리회로 쪽 것을, 복호기,decoder는 신호/암호학쪽 것을 적을까?

DELME TMP from https://vol.verilog.com/VOL/c01/v01108r1.htm

The following module implements a 2-bit to 4 decoder.
module decodeX4 (b0, b1, b2, b3, in0, in1);
    output b0, b1, b2, b3;
    input  in0, in1;             // select inputs

    not    N1 (t0, in0);         // invert inputs
    not    N2 (t1, in1);
                         
    and    A1 (b0, t1, t0);      // decode inputs => outputs
    and    A2 (b1, t1, in0);
    and    A3 (b2, in1, t0);
    and    A4 (b3, in1, in0);
endmodule