summaryrefslogtreecommitdiffstats
path: root/part_3/ex14/add_offset.v
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-12-12 13:19:22 +0000
committerzedarider <ymherklotz@gmail.com>2016-12-12 13:19:22 +0000
commitaee06a47eca6d7f5532a10e59e394fd33904670a (patch)
tree9abf1adeec021a72863f1bfc8e1270513b26f1cb /part_3/ex14/add_offset.v
parentc2618f0b8ff2ed70d1e830b612b9ecfe722ece5f (diff)
downloadVerilogCoursework-aee06a47eca6d7f5532a10e59e394fd33904670a.tar.gz
VerilogCoursework-aee06a47eca6d7f5532a10e59e394fd33904670a.zip
adding full files to github, with all updates
Diffstat (limited to 'part_3/ex14/add_offset.v')
-rwxr-xr-xpart_3/ex14/add_offset.v14
1 files changed, 14 insertions, 0 deletions
diff --git a/part_3/ex14/add_offset.v b/part_3/ex14/add_offset.v
new file mode 100755
index 0000000..02882fb
--- /dev/null
+++ b/part_3/ex14/add_offset.v
@@ -0,0 +1,14 @@
+module add_offset(keys, tick, address);
+
+ input [9:0] keys;
+ input tick;
+ output [9:0] address;
+
+ reg [9:0] address;
+
+ initial address = 10'b0;
+
+ always @ (posedge tick)
+ address = keys + address;
+
+endmodule \ No newline at end of file