diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-01-04 15:15:23 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-01-04 15:15:23 +0100 |
commit | 50ef4561d49a471162799fd1f2cd42af408c0b73 (patch) | |
tree | a29eedab206236ff643b3432cc3fd4d3aa49c198 /techlibs | |
parent | d98fe8ce1fbcd5480181ed22d43b850863191033 (diff) | |
download | yosys-50ef4561d49a471162799fd1f2cd42af408c0b73.tar.gz yosys-50ef4561d49a471162799fd1f2cd42af408c0b73.tar.bz2 yosys-50ef4561d49a471162799fd1f2cd42af408c0b73.zip |
Fix cells_sim.v for Achronix FPGA
Diffstat (limited to 'techlibs')
-rwxr-xr-x | techlibs/achronix/speedster22i/cells_sim.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/achronix/speedster22i/cells_sim.v b/techlibs/achronix/speedster22i/cells_sim.v index da23fed7e..a94dce9b1 100755 --- a/techlibs/achronix/speedster22i/cells_sim.v +++ b/techlibs/achronix/speedster22i/cells_sim.v @@ -61,7 +61,7 @@ reg [1:0] s1; end endfunction -always @(dataa_w or datab_w or datac_w or datad_w or cin_w) begin +always @(dataa_w or datab_w or datac_w or datad_w) begin combout_rt = lut_data(lut_function, dataa_w, datab_w, datac_w, datad_w); end |