Remove #ifndef ABC
authorEddie Hung <eddie@fpgeh.com>
Tue, 11 Jun 2019 19:02:31 +0000 (12:02 -0700)
committerEddie Hung <eddie@fpgeh.com>
Tue, 11 Jun 2019 19:02:31 +0000 (12:02 -0700)
techlibs/xilinx/cells_sim.v

index 88967b0685834551dc0888168fcfb22e5ecd12ec..14e35737e673eeb02b8dc3b11974dbc7d45a787f 100644 (file)
@@ -295,10 +295,8 @@ module RAM64X1D (
   reg [63:0] mem = INIT;
   assign SPO = mem[a];
   assign DPO = mem[dpra];
-`ifndef _ABC
   wire clk = WCLK ^ IS_WCLK_INVERTED;
   always @(posedge clk) if (WE) mem[a] <= D;
-`endif
 endmodule
 
 (* abc_box_id = 5 /*, lib_whitebox*/ *)
@@ -312,10 +310,8 @@ module RAM128X1D (
   reg [127:0] mem = INIT;
   assign SPO = mem[A];
   assign DPO = mem[DPRA];
-`ifndef _ABC
   wire clk = WCLK ^ IS_WCLK_INVERTED;
   always @(posedge clk) if (WE) mem[A] <= D;
-`endif
 endmodule
 
 module SRL16E (