mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Genericising bug1836.ys
This commit is contained in:
parent
445a801a85
commit
f80920bd9f
|
@ -1,31 +1,23 @@
|
||||||
read_verilog <<EOT
|
read_verilog <<EOT
|
||||||
module dds(input clk, output reg [15:0] signal1, output reg [15:0] signal2);
|
module top(
|
||||||
reg [9:0] phase_accumulator_1;
|
input clk,
|
||||||
reg [9:0] phase_accumulator_2;
|
output reg [15:0] sig1, sig2
|
||||||
reg [15:0] sine_table [0:255];
|
);
|
||||||
|
reg [7:0] ptr1, ptr2;
|
||||||
|
reg [15:0] mem [0:255];
|
||||||
|
|
||||||
initial begin
|
initial begin
|
||||||
$readmemh("bug1836.mem",sine_table);
|
$readmemh("bug1836.mem", mem);
|
||||||
end
|
end
|
||||||
|
|
||||||
always @(posedge clk) begin
|
always @(posedge clk) begin
|
||||||
phase_accumulator_1 <= phase_accumulator_1 + 1;
|
sig1 <= mem[ptr1];
|
||||||
phase_accumulator_2 <= phase_accumulator_2 + 2;
|
ptr1 <= ptr1 + 3;
|
||||||
|
sig2 <= mem[ptr2];
|
||||||
|
ptr2 <= ptr2 + 7;
|
||||||
end
|
end
|
||||||
|
|
||||||
always @(posedge clk) begin
|
|
||||||
signal1 <= sine_table[phase_accumulator_1[9:2]];
|
|
||||||
//signal2 <= sine_table[phase_accumulator_2[9:2]];
|
|
||||||
end
|
|
||||||
|
|
||||||
//comment out this always block below to test for single port read
|
|
||||||
always @(posedge clk) begin
|
|
||||||
//signal1 <= sine_table[phase_accumulator_1[9:2]];
|
|
||||||
signal2 <= sine_table[phase_accumulator_2[9:2]];
|
|
||||||
end
|
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
synth_ecp5 -top dds
|
synth_ecp5 -top top
|
||||||
select -assert-count 1 t:DP16KD
|
select -assert-count 1 t:DP16KD
|
||||||
|
|
Loading…
Reference in a new issue