写完软件需要加gpio

This commit is contained in:
Ruige Lee (WSL)
2025-01-16 16:34:48 +08:00
parent f63e3a831b
commit e54ddab4e2
9 changed files with 419 additions and 572 deletions

View File

@@ -0,0 +1,17 @@
// See LICENSE.SiFive for license details.
//VCS coverage exclude_file
// No default parameter values are intended, nor does IEEE 1800-2012 require them (clause A.2.4 param_assignment),
// but Incisive demands them. These default values should never be used.
module plusarg_reader #(
parameter FORMAT="borked=%d",
parameter WIDTH=1,
parameter [WIDTH-1:0] DEFAULT=0
) (
output [WIDTH-1:0] out
);
assign out = DEFAULT;
endmodule