diff options
author | Diego H <dhdezr@gmail.com> | 2018-12-03 20:08:35 -0600 |
---|---|---|
committer | Diego H <dhdezr@gmail.com> | 2018-12-03 20:08:35 -0600 |
commit | 819ca7309620b3791c7b93de44990ffb4fceb30f (patch) | |
tree | 08fd9f5adfd9a8afb3f58600e67907c7346b0cee /techlibs/intel | |
parent | 47c89d600c11aee97e325351d295781169d62978 (diff) | |
download | yosys-819ca7309620b3791c7b93de44990ffb4fceb30f.tar.gz yosys-819ca7309620b3791c7b93de44990ffb4fceb30f.tar.bz2 yosys-819ca7309620b3791c7b93de44990ffb4fceb30f.zip |
Changes in GoWin synth commands and ALU primitive support
Diffstat (limited to 'techlibs/intel')
-rw-r--r-- | techlibs/intel/common/brams_map.v | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/techlibs/intel/common/brams_map.v b/techlibs/intel/common/brams_map.v index fae4af2ab..d0f07c1de 100644 --- a/techlibs/intel/common/brams_map.v +++ b/techlibs/intel/common/brams_map.v @@ -2,8 +2,8 @@ module \$__M9K_ALTSYNCRAM_SINGLEPORT_FULL (CLK2, CLK3, A1ADDR, A1DATA, A1EN, B1A parameter CFG_ABITS = 8; parameter CFG_DBITS = 36; - parameter ABITS = "1"; - parameter DBITS = "1"; + parameter ABITS = 1; + parameter DBITS = 1; parameter CLKPOL2 = 1; parameter CLKPOL3 = 1; @@ -63,21 +63,21 @@ module \$__M9K_ALTSYNCRAM_SINGLEPORT_FULL (CLK2, CLK3, A1ADDR, A1DATA, A1EN, B1A .width_byteena_a (1), // Forced value .numwords_b ( NUMWORDS ), .numwords_a ( NUMWORDS ), - .widthad_b ( CFG_ABITS ), - .width_b ( CFG_DBITS ), - .widthad_a ( CFG_ABITS ), - .width_a ( CFG_DBITS ) + .widthad_b ( CFG_DBITS ), + .width_b ( CFG_ABITS ), + .widthad_a ( CFG_DBITS ), + .width_a ( CFG_ABITS ) ) _TECHMAP_REPLACE_ ( .data_a(B1DATA), .address_a(B1ADDR), .wren_a(B1EN), .rden_a(A1EN), .q_a(A1DATA), - .data_b(1'b0), + .data_b(B1DATA), .address_b(0), .wren_b(1'b0), .rden_b(1'b0), - .q_b(1'b0), + .q_b(), .clock0(CLK2), .clock1(1'b1), // Unused in single port mode .clocken0(1'b1), |