aboutsummaryrefslogtreecommitdiffstats
path: root/atk16_fpga/top.v
diff options
context:
space:
mode:
Diffstat (limited to 'atk16_fpga/top.v')
-rw-r--r--atk16_fpga/top.v18
1 files changed, 18 insertions, 0 deletions
diff --git a/atk16_fpga/top.v b/atk16_fpga/top.v
new file mode 100644
index 0000000..c456b31
--- /dev/null
+++ b/atk16_fpga/top.v
@@ -0,0 +1,18 @@
+module top(
+ input wire SYSCLK,
+ output wire LED1
+);
+
+ assign LED1 = SYSCLK;
+
+ wire [15:0] result;
+ wire [3:0] flags;
+ alu alu_inst(
+ .sel(3'd0),
+ .a(16'd0),
+ .b(16'd0),
+ .result(result),
+ .flags(flags)
+ );
+
+endmodule