projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f07b8eb
)
machxo2: Use correct INITVAL for LUT1 in FACADE_SLICE.
author
William D. Jones
<thor0505@comcast.net>
Fri, 27 Nov 2020 01:18:15 +0000
(20:18 -0500)
committer
Marcelina KoĆcielnicka
<mwk@0x04.net>
Tue, 23 Feb 2021 16:39:58 +0000
(17:39 +0100)
techlibs/machxo2/cells_sim.v
patch
|
blob
|
history
diff --git
a/techlibs/machxo2/cells_sim.v
b/techlibs/machxo2/cells_sim.v
index 1cb45650aec7c00666e68dcd70352bd6b7928a74..134f264533ede3435598ccdee2c216bf415ff04c 100644
(file)
--- a/
techlibs/machxo2/cells_sim.v
+++ b/
techlibs/machxo2/cells_sim.v
@@
-132,7
+132,7
@@
module FACADE_SLICE #(
PFUMX K0K1MUX (.ALUT(k1), .BLUT(k0), .C0(M0), .Z(OFX0));
LUT4 #(.INIT(LUT0_INITVAL)) LUT_0 (.A(A0), .B(B0), .C(C0), .D(D0), .Z(k0));
- LUT4 #(.INIT(LUT
0
_INITVAL)) LUT_1 (.A(A0), .B(B0), .C(C0), .D(D0), .Z(k1));
+ LUT4 #(.INIT(LUT
1
_INITVAL)) LUT_1 (.A(A0), .B(B0), .C(C0), .D(D0), .Z(k1));
assign F0 = k0;
assign F1 = k1;