diff --git a/ps4/Screenshot 2020-04-01 22:20:40.png b/ps4/Screenshot 2020-04-01 22:20:40.png new file mode 100644 index 0000000..af70a2c Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:20:40.png differ diff --git a/ps4/Screenshot 2020-04-01 22:21:27.png b/ps4/Screenshot 2020-04-01 22:21:27.png new file mode 100644 index 0000000..93dd1ee Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:21:27.png differ diff --git a/ps4/Screenshot 2020-04-01 22:21:40.png b/ps4/Screenshot 2020-04-01 22:21:40.png new file mode 100644 index 0000000..e4fe62f Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:21:40.png differ diff --git a/ps4/Screenshot 2020-04-01 22:21:59.png b/ps4/Screenshot 2020-04-01 22:21:59.png new file mode 100644 index 0000000..69c3914 Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:21:59.png differ diff --git a/ps4/Screenshot 2020-04-01 22:22:15.png b/ps4/Screenshot 2020-04-01 22:22:15.png new file mode 100644 index 0000000..f733f3d Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:22:15.png differ diff --git a/ps4/Screenshot 2020-04-01 22:22:33.png b/ps4/Screenshot 2020-04-01 22:22:33.png new file mode 100644 index 0000000..c3ef0cd Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:22:33.png differ diff --git a/ps4/Screenshot 2020-04-01 22:22:55.png b/ps4/Screenshot 2020-04-01 22:22:55.png new file mode 100644 index 0000000..ca5b40a Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:22:55.png differ diff --git a/ps4/Screenshot 2020-04-01 22:23:13.png b/ps4/Screenshot 2020-04-01 22:23:13.png new file mode 100644 index 0000000..9ab7128 Binary files /dev/null and b/ps4/Screenshot 2020-04-01 22:23:13.png differ diff --git a/ps4/dds_vhdl/dds_vhdl_tb.v b/ps4/dds_vhdl/dds_vhdl_tb.v index ad1484c..c8e386f 100644 --- a/ps4/dds_vhdl/dds_vhdl_tb.v +++ b/ps4/dds_vhdl/dds_vhdl_tb.v @@ -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