aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-01-27 09:25:18 +0100
committerGitHub <noreply@github.com>2019-01-27 09:25:18 +0100
commit266511b29eb66486bd17210eb28454a2efee218a (patch)
treed80f3496ea2d2d013d2d5334cb1e10b8d61653f4
parent81581f24fc88ec67093c330d145bb52badead85d (diff)
parent0de328da8ffea4902c52b286d7b38d67a714c742 (diff)
downloadyosys-266511b29eb66486bd17210eb28454a2efee218a.tar.gz
yosys-266511b29eb66486bd17210eb28454a2efee218a.tar.bz2
yosys-266511b29eb66486bd17210eb28454a2efee218a.zip
Merge pull request #798 from mmicko/master
Fixed Anlogic simulation model
-rw-r--r--techlibs/anlogic/cells_sim.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/anlogic/cells_sim.v b/techlibs/anlogic/cells_sim.v
index 60a367928..058e76605 100644
--- a/techlibs/anlogic/cells_sim.v
+++ b/techlibs/anlogic/cells_sim.v
@@ -17,7 +17,7 @@ module AL_MAP_LUT1 (
);
parameter [1:0] INIT = 2'h0;
parameter EQN = "(A)";
- assign Y = INIT >> A;
+ assign o = INIT >> a;
endmodule
module AL_MAP_LUT2 (