summaryrefslogtreecommitdiff
path: root/and/v0.1/and8.v
blob: 40cc298469056057f3fb4b8ff0f98ea065a8425d (plain) (blame)
1
2
3
4
5
6
7
8
9
module and8(
    input [7:0]a,
    input [7:0]b,
    output [7:0]c
);

    assign c = b&a;

endmodule