From b9b5899cceb392c0069345c5b43c37bfe8346116 Mon Sep 17 00:00:00 2001 From: KrystalDelusion <93062060+KrystalDelusion@users.noreply.github.com> Date: Fri, 25 Nov 2022 03:56:44 +1300 Subject: Remove docs dependency on yosys repo (#3558) * Copies guidelines files into docs/ for website * Copying manual/CHAPTER_Prog for new docs * Copying manual/APPNOTE_011... for new docs Also adding faketime to list of packages for website build. Co-authored-by: KrystalDelusion --- docs/source/APPNOTE_011_Design_Investigation/example.v | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 docs/source/APPNOTE_011_Design_Investigation/example.v (limited to 'docs/source/APPNOTE_011_Design_Investigation/example.v') diff --git a/docs/source/APPNOTE_011_Design_Investigation/example.v b/docs/source/APPNOTE_011_Design_Investigation/example.v new file mode 100644 index 000000000..8c71989b3 --- /dev/null +++ b/docs/source/APPNOTE_011_Design_Investigation/example.v @@ -0,0 +1,6 @@ +module example(input clk, a, b, c, + output reg [1:0] y); + always @(posedge clk) + if (c) + y <= c ? a + b : 2'd0; +endmodule -- cgit v1.2.3