Files
chloe ae3e9b26c1 initial commit
Signed-off-by: Ian Moffett <ian@mirocom.org>
2026-05-24 01:08:46 -04:00

18 lines
264 B
Systemverilog

//
// 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