diff options
author | William D. Jones <thor0505@comcast.net> | 2020-11-26 20:18:15 -0500 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-02-23 17:39:58 +0100 |
commit | 3697f351d58a1abe200457f252c41acb37da103a (patch) | |
tree | cd64f56a1f1da73ecb8c9d30793a10d3ae51f9fa /techlibs/machxo2 | |
parent | f07b8eb606e9bcbf425510d938145a1e30e54b5d (diff) | |
download | yosys-3697f351d58a1abe200457f252c41acb37da103a.tar.gz yosys-3697f351d58a1abe200457f252c41acb37da103a.tar.bz2 yosys-3697f351d58a1abe200457f252c41acb37da103a.zip |
machxo2: Use correct INITVAL for LUT1 in FACADE_SLICE.
Diffstat (limited to 'techlibs/machxo2')
-rw-r--r-- | techlibs/machxo2/cells_sim.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/machxo2/cells_sim.v b/techlibs/machxo2/cells_sim.v index 1cb45650a..134f26453 100644 --- 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(LUT0_INITVAL)) LUT_1 (.A(A0), .B(B0), .C(C0), .D(D0), .Z(k1)); + LUT4 #(.INIT(LUT1_INITVAL)) LUT_1 (.A(A0), .B(B0), .C(C0), .D(D0), .Z(k1)); assign F0 = k0; assign F1 = k1; |