Add "WE" to dist RAM's abc_scc_break
authorEddie Hung <eddie@fpgeh.com>
Thu, 27 Jun 2019 02:58:09 +0000 (19:58 -0700)
committerEddie Hung <eddie@fpgeh.com>
Thu, 27 Jun 2019 02:58:09 +0000 (19:58 -0700)
techlibs/xilinx/cells_sim.v

index 04381e3b9cf764b40fa7a6f06f2e6158bf1b1b3b..4ecf8277be8c40abd5174dd2f4439bc77c2f2a5a 100644 (file)
@@ -281,7 +281,7 @@ module FDPE_1 (output reg Q, input C, CE, D, PRE);
   always @(negedge C, posedge PRE) if (PRE) Q <= 1'b1; else if (CE) Q <= D;
 endmodule
 
-(* abc_box_id = 4, abc_scc_break="D" *)
+(* abc_box_id = 4, abc_scc_break="D,WE" *)
 module RAM32X1D (
   output DPO, SPO,
   input  D, WCLK, WE,
@@ -299,7 +299,7 @@ module RAM32X1D (
   always @(posedge clk) if (WE) mem[a] <= D;
 endmodule
 
-(* abc_box_id = 5, abc_scc_break="D" *)
+(* abc_box_id = 5, abc_scc_break="D,WE" *)
 module RAM64X1D (
   output DPO, SPO,
   input  D, WCLK, WE,
@@ -317,7 +317,7 @@ module RAM64X1D (
   always @(posedge clk) if (WE) mem[a] <= D;
 endmodule
 
-(* abc_box_id = 6, abc_scc_break="D" *)
+(* abc_box_id = 6, abc_scc_break="D,WE" *)
 module RAM128X1D (
   output       DPO, SPO,
   input        D, WCLK, WE,