aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/coolrunner2/cells_sim.v
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs/coolrunner2/cells_sim.v')
-rw-r--r--techlibs/coolrunner2/cells_sim.v3
1 files changed, 1 insertions, 2 deletions
diff --git a/techlibs/coolrunner2/cells_sim.v b/techlibs/coolrunner2/cells_sim.v
index 474d35a9a..52326fbb3 100644
--- a/techlibs/coolrunner2/cells_sim.v
+++ b/techlibs/coolrunner2/cells_sim.v
@@ -43,7 +43,6 @@ module ORTERM(IN, OUT);
endmodule
module MACROCELL_XOR(IN_PTC, IN_ORTERM, OUT);
- parameter INVERT_PTC = 0;
parameter INVERT_OUT = 0;
input IN_PTC;
@@ -53,5 +52,5 @@ module MACROCELL_XOR(IN_PTC, IN_ORTERM, OUT);
wire xor_intermed;
assign OUT = INVERT_OUT ? ~xor_intermed : xor_intermed;
- assign xor_intermed = INVERT_PTC ? IN_ORTERM ^ ~IN_PTC : IN_ORTERM ^ IN_PTC;
+ assign xor_intermed = IN_ORTERM ^ IN_PTC;
endmodule