From 11508800cfaefc1c25a793760bf10d3fd997af80 Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Wed, 14 May 2025 19:16:38 +0300 Subject: Initial and probably final commit --- 2-c.v | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 2-c.v (limited to '2-c.v') diff --git a/2-c.v b/2-c.v new file mode 100644 index 0000000..33a9d00 --- /dev/null +++ b/2-c.v @@ -0,0 +1,34 @@ +// для ненаписанного теста +// `include "2-a.v" +// `include "2-b.v" + +module linear_classifier(features, weights, r_value, r_class); + parameter WIDTH=8, FEATURES=2, C_WIDTH=1; + input [FEATURES*WIDTH-1:0]features; + input [(1<