Add aditional simulations and simulation results

This commit is contained in:
Imants Pulkstenis
2020-04-01 22:28:53 +03:00
parent 1598022c70
commit 7b0caf4bb5
9 changed files with 13 additions and 0 deletions
+13
View File
@@ -26,6 +26,10 @@
//top module
`include "dds_vhdl.v"
// 100MHz clock input from top module
// 50% duty cycle 5ns HIGH and 5ns LOW
//`timescale [time unit] / [time precision]
`timescale 10 ns / 1ns
//define module and connections to outside
module dds_vhdl_tb #( parameter
@@ -69,6 +73,15 @@ initial begin
#100
r_control = 0;
#100
r_phase_incr = 'd2;
r_control = 3;
#100
r_control = 2;
#100
r_control = 1;
#100
r_control = 0;
#100
$finish();
end