mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Add #1460 testcase
This commit is contained in:
parent
7a9d1be97d
commit
037d1a03df
34
tests/arch/xilinx/bug1460.ys
Normal file
34
tests/arch/xilinx/bug1460.ys
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
read_verilog <<EOT
|
||||||
|
module register_file(
|
||||||
|
input wire clk,
|
||||||
|
input wire write_enable,
|
||||||
|
input wire [63:0] write_data,
|
||||||
|
input wire [4:0] write_reg,
|
||||||
|
input wire [4:0] read1_reg,
|
||||||
|
input wire [4:0] read2_reg,
|
||||||
|
input wire [4:0] read3_reg,
|
||||||
|
output reg [63:0] read1_data,
|
||||||
|
output reg [63:0] read2_data,
|
||||||
|
output reg [63:0] read3_data
|
||||||
|
);
|
||||||
|
|
||||||
|
reg [63:0] registers[0:31];
|
||||||
|
|
||||||
|
always @(posedge clk) begin
|
||||||
|
if (write_enable == 1'b1) begin
|
||||||
|
registers[write_reg] <= write_data;
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
always @(all) begin
|
||||||
|
read1_data <= registers[read1_reg];
|
||||||
|
read2_data <= registers[read2_reg];
|
||||||
|
read3_data <= registers[read3_reg];
|
||||||
|
end
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
synth_xilinx
|
||||||
|
cd register_file
|
||||||
|
select -assert-count 32 t:RAM32M
|
||||||
|
select -assert-none t:* t:BUFG %d t:RAM32M %d
|
Loading…
Reference in a new issue