Files
MSP/chipset/rtl/soc.sv
T

18 lines
264 B
Systemverilog
Raw Normal View History

2026-05-24 01:08:46 -04:00
//
// 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