From 21e8e376ea823d8563ed007bf68f1785800be50e Mon Sep 17 00:00:00 2001 From: Michal Czyz Date: Thu, 30 Mar 2023 15:54:01 +0200 Subject: [PATCH] Add hello module which is properly formatted --- hello.sv | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 hello.sv diff --git a/hello.sv b/hello.sv new file mode 100644 index 00000000..8cd24a5d --- /dev/null +++ b/hello.sv @@ -0,0 +1,10 @@ + +module hello ( + input clk +); + + initial begin : proc_he + $display("helllo"); + end + +endmodule