initial commit

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-05-24 01:08:46 -04:00
commit ae3e9b26c1
5 changed files with 105 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// Copyright (c) 2026 Mirocom Laboratories and MSP engineers.
// All Rights Reserved.
//
//
// MSP System-on-Chip description
//
// @clk_i: Clock input
// @reset_i: Reset input
//
module soc (
input wire clk_i,
input wire reset_i
);
endmodule