diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 11:31:20 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 11:31:20 -0700 |
commit | e658d472c89d0fef820f2a9ddc6184b566cc0d9b (patch) | |
tree | da7f4c319acd0c0a08f8064feee07595da8e0c5d /techlibs/xilinx/xc7_brams_bb.v | |
parent | d672b1ddecf30cc7fd005ce7a06ab6c2d3dca1a5 (diff) | |
download | yosys-e658d472c89d0fef820f2a9ddc6184b566cc0d9b.tar.gz yosys-e658d472c89d0fef820f2a9ddc6184b566cc0d9b.tar.bz2 yosys-e658d472c89d0fef820f2a9ddc6184b566cc0d9b.zip |
Put attributes above port
Diffstat (limited to 'techlibs/xilinx/xc7_brams_bb.v')
-rw-r--r-- | techlibs/xilinx/xc7_brams_bb.v | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/techlibs/xilinx/xc7_brams_bb.v b/techlibs/xilinx/xc7_brams_bb.v index 0e8cb406c..56939089c 100644 --- a/techlibs/xilinx/xc7_brams_bb.v +++ b/techlibs/xilinx/xc7_brams_bb.v @@ -21,10 +21,14 @@ module RAMB18E1 ( input [1:0] WEA, input [3:0] WEBWE, - (* abc_arrival=2454 *) output [15:0] DOADO, - (* abc_arrival=2454 *) output [15:0] DOBDO, - (* abc_arrival=2454 *) output [1:0] DOPADOP, - (* abc_arrival=2454 *) output [1:0] DOPBDOP + (* abc_arrival=2454 *) + output [15:0] DOADO, + (* abc_arrival=2454 *) + output [15:0] DOBDO, + (* abc_arrival=2454 *) + output [1:0] DOPADOP, + (* abc_arrival=2454 *) + output [1:0] DOPBDOP ); parameter INITP_00 = 256'h0000000000000000000000000000000000000000000000000000000000000000; parameter INITP_01 = 256'h0000000000000000000000000000000000000000000000000000000000000000; @@ -145,10 +149,14 @@ module RAMB36E1 ( input [3:0] WEA, input [7:0] WEBWE, - (* abc_arrival=2454 *) output [31:0] DOADO, - (* abc_arrival=2454 *) output [31:0] DOBDO, - (* abc_arrival=2454 *) output [3:0] DOPADOP, - (* abc_arrival=2454 *) output [3:0] DOPBDOP + (* abc_arrival=2454 *) + output [31:0] DOADO, + (* abc_arrival=2454 *) + output [31:0] DOBDO, + (* abc_arrival=2454 *) + output [3:0] DOPADOP, + (* abc_arrival=2454 *) + output [3:0] DOPBDOP ); parameter INITP_00 = 256'h0000000000000000000000000000000000000000000000000000000000000000; parameter INITP_01 = 256'h0000000000000000000000000000000000000000000000000000000000000000; |