summaryrefslogtreecommitdiff
path: root/part_3/ex10/ex10_top.v
diff options
context:
space:
mode:
Diffstat (limited to 'part_3/ex10/ex10_top.v')
-rw-r--r--part_3/ex10/ex10_top.v29
1 files changed, 29 insertions, 0 deletions
diff --git a/part_3/ex10/ex10_top.v b/part_3/ex10/ex10_top.v
new file mode 100644
index 0000000..730c3ca
--- /dev/null
+++ b/part_3/ex10/ex10_top.v
@@ -0,0 +1,29 @@
+
+
+module ex10_top (
+ SW,
+ CLOCK_50,
+ DAC_SDI,
+ DAC_CS,
+ DAC_LD,
+ DAC_SCK
+);
+ input CLOCK_50;
+ input [9:0] SW;
+ output DAC_SDI,DAC_CS,DAC_SCK,DAC_LD;
+
+ wire CLOCK_DIVIDED;
+
+ divider_5000 COUNT0 (CLOCK_50, CLOCK_DIVIDED);
+
+ spi2dac SPI0 (
+ .sysclk(CLOCK_50),
+ .data_in(SW[9:0]),
+ .load(CLOCK_DIVIDED),
+ .dac_sdi(DAC_SDI),
+ .dac_cs(DAC_CS),
+ .dac_sck(DAC_SCK),
+ .dac_ld(DAC_LD)
+ );
+
+endmodule \ No newline at end of file