3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +00:00

synth_quicklogic: rearrange files to prepare for adding more architectures

This commit is contained in:
N. Engelhardt 2023-07-07 15:27:21 +02:00 committed by Martin Povišer
parent 031ad38b5c
commit e230a871be
20 changed files with 139 additions and 113 deletions

View file

@ -0,0 +1,36 @@
module \$_MUX8_ (
A, B, C, D, E, F, G, H, S, T, U, Y
);
input A, B, C, D, E, F, G, H, S, T, U;
output Y;
mux8x0 _TECHMAP_REPLACE_ (
.A(A),
.B(B),
.C(C),
.D(D),
.E(E),
.F(F),
.G(G),
.H(H),
.S0(S),
.S1(T),
.S2(U),
.Q(Y)
);
endmodule
module \$_MUX4_ (
A, B, C, D, S, T, U, Y
);
input A, B, C, D, S, T, U;
output Y;
mux4x0 _TECHMAP_REPLACE_ (
.A(A),
.B(B),
.C(C),
.D(D),
.S0(S),
.S1(T),
.Q(Y)
);
endmodule