aboutsummaryrefslogtreecommitdiff
path: root/task4/reuleaux.sv
diff options
context:
space:
mode:
authorgithub-classroom[bot] <66690702+github-classroom[bot]@users.noreply.github.com>2026-02-05 19:36:36 +0000
committerGitHub <noreply@github.com>2026-02-05 19:36:36 +0000
commitead28dd6fed440ccf4667c459778012bb0d95733 (patch)
treebbc326fa1b487efc0fe163ef733a76c8a241fbb0 /task4/reuleaux.sv
Initial commit
Diffstat (limited to 'task4/reuleaux.sv')
-rw-r--r--task4/reuleaux.sv8
1 files changed, 8 insertions, 0 deletions
diff --git a/task4/reuleaux.sv b/task4/reuleaux.sv
new file mode 100644
index 0000000..abcde5e
--- /dev/null
+++ b/task4/reuleaux.sv
@@ -0,0 +1,8 @@
+module reuleaux(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] diameter,
+ 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 Reuleaux triangle
+endmodule
+