diff options
| author | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 11:26:55 -0700 | 
|---|---|---|
| committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 11:26:55 -0700 | 
| commit | d672b1ddecf30cc7fd005ce7a06ab6c2d3dca1a5 (patch) | |
| tree | 46140158ab5a760da9280900e00240e5a1e6dca9 /techlibs/xilinx | |
| parent | c7af71ecde65ad310e487a296b957678412fca74 (diff) | |
| parent | 509c353fe981c95ca667a637bf2b47477962a60b (diff) | |
| download | yosys-d672b1ddecf30cc7fd005ce7a06ab6c2d3dca1a5.tar.gz yosys-d672b1ddecf30cc7fd005ce7a06ab6c2d3dca1a5.tar.bz2 yosys-d672b1ddecf30cc7fd005ce7a06ab6c2d3dca1a5.zip | |
Merge remote-tracking branch 'origin/master' into xaig_arrival
Diffstat (limited to 'techlibs/xilinx')
| -rw-r--r-- | techlibs/xilinx/cells_sim.v | 15 | 
1 files changed, 10 insertions, 5 deletions
| diff --git a/techlibs/xilinx/cells_sim.v b/techlibs/xilinx/cells_sim.v index 65c59759a..21ac19300 100644 --- a/techlibs/xilinx/cells_sim.v +++ b/techlibs/xilinx/cells_sim.v @@ -175,9 +175,11 @@ endmodule  (* abc_box_id = 4, lib_whitebox *)  module CARRY4( -  (* abc_carry *) output [3:0] CO, +  (* abc_carry *) +  output [3:0] CO,    output [3:0] O, -  (* abc_carry *) input CI, +  (* abc_carry *) +  input        CI,    input        CYINIT,    input  [3:0] DI, S  ); @@ -299,7 +301,8 @@ endmodule  module RAM32X1D (    // Max delay from: https://github.com/SymbiFlow/prjxray-db/blob/34ea6eb08a63d21ec16264ad37a0a7b142ff6031/artix7/timings/CLBLM_R.sdf#L957 -  (* abc_arrival=1153 *) output DPO, SPO, +  (* abc_arrival=1153 *) +  output DPO, SPO,    input  D,    input  WCLK,    input  WE, @@ -319,7 +322,8 @@ endmodule  module RAM64X1D (    // Max delay from: https://github.com/SymbiFlow/prjxray-db/blob/34ea6eb08a63d21ec16264ad37a0a7b142ff6031/artix7/timings/CLBLM_R.sdf#L957 -  (* abc_arrival=1153 *) output DPO, SPO, +  (* abc_arrival=1153 *) +  output DPO, SPO,    input  D,    input  WCLK,    input  WE, @@ -339,7 +343,8 @@ endmodule  module RAM128X1D (    // Max delay from: https://github.com/SymbiFlow/prjxray-db/blob/34ea6eb08a63d21ec16264ad37a0a7b142ff6031/artix7/timings/CLBLM_R.sdf#L957 -  (* abc_arrival=1153 *) output DPO, SPO, +  (* abc_arrival=1153 *) +  output DPO, SPO,    input        D,    input        WCLK,    input        WE, | 
