From ead28dd6fed440ccf4667c459778012bb0d95733 Mon Sep 17 00:00:00 2001 From: "github-classroom[bot]" <66690702+github-classroom[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 19:36:36 +0000 Subject: Initial commit --- task3/circle.sv | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 task3/circle.sv (limited to 'task3/circle.sv') diff --git a/task3/circle.sv b/task3/circle.sv new file mode 100644 index 0000000..112426d --- /dev/null +++ b/task3/circle.sv @@ -0,0 +1,8 @@ +module circle(input logic clk, input logic rst_n, input logic [2:0] colour, + input logic [7:0] centre_x, input logic [6:0] centre_y, input logic [7:0] radius, + input logic start, output logic done, + output logic [7:0] vga_x, output logic [6:0] vga_y, + output logic [2:0] vga_colour, output logic vga_plot); + // draw the circle +endmodule + -- cgit v1.2.3