diff options
author | KrystalDelusion <krystinedawn@yosyshq.com> | 2022-12-08 05:54:38 +1300 |
---|---|---|
committer | KrystalDelusion <krystinedawn@yosyshq.com> | 2022-12-08 05:54:38 +1300 |
commit | a955c42d6c414241be39f6a2475d73ee2bdb4e43 (patch) | |
tree | fcb6a9b07249485f916bf9fc717a7cf7685ccb10 /manual/APPNOTE_011_Design_Investigation/foobaraddsub.v | |
parent | 1eec255e60f2854b4dd1fa212f02d57eb31c9f19 (diff) | |
download | yosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.tar.gz yosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.tar.bz2 yosys-a955c42d6c414241be39f6a2475d73ee2bdb4e43.zip |
And appnotes
Diffstat (limited to 'manual/APPNOTE_011_Design_Investigation/foobaraddsub.v')
-rw-r--r-- | manual/APPNOTE_011_Design_Investigation/foobaraddsub.v | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/manual/APPNOTE_011_Design_Investigation/foobaraddsub.v b/manual/APPNOTE_011_Design_Investigation/foobaraddsub.v deleted file mode 100644 index 0f277211d..000000000 --- a/manual/APPNOTE_011_Design_Investigation/foobaraddsub.v +++ /dev/null @@ -1,8 +0,0 @@ -module foobaraddsub(a, b, c, d, fa, fs, ba, bs); - input [7:0] a, b, c, d; - output [7:0] fa, fs, ba, bs; - assign fa = a + (* foo *) b; - assign fs = a - (* foo *) b; - assign ba = c + (* bar *) d; - assign bs = c - (* bar *) d; -endmodule |