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:
parent
031ad38b5c
commit
e230a871be
20 changed files with 139 additions and 113 deletions
36
techlibs/quicklogic/pp3/cells_map.v
Normal file
36
techlibs/quicklogic/pp3/cells_map.v
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue