aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/achronix
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-01-04 15:18:18 +0100
committerGitHub <noreply@github.com>2019-01-04 15:18:18 +0100
commite041ae3c6d41eab6c350a0928adeff45a47f23fe (patch)
tree242e93bd5e4d3f983fbf155243db316c071fb755 /techlibs/achronix
parent6d1e7e9403c81289492af889922df9aa3e3842b0 (diff)
parent50ef4561d49a471162799fd1f2cd42af408c0b73 (diff)
downloadyosys-e041ae3c6d41eab6c350a0928adeff45a47f23fe.tar.gz
yosys-e041ae3c6d41eab6c350a0928adeff45a47f23fe.tar.bz2
yosys-e041ae3c6d41eab6c350a0928adeff45a47f23fe.zip
Merge pull request #777 from mmicko/achronix_cell_sim_fix
Fix cells_sim.v for Achronix FPGA
Diffstat (limited to 'techlibs/achronix')
-rwxr-xr-xtechlibs/achronix/speedster22i/cells_sim.v2
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