diff options
author | Peter Gadfort <peter.gadfort@gmail.com> | 2023-01-02 12:46:41 -0500 |
---|---|---|
committer | Peter Gadfort <peter.gadfort@gmail.com> | 2023-01-02 12:46:41 -0500 |
commit | 7971154e727cc4d7c4b8c62ad43a28645bb66795 (patch) | |
tree | ea4632f116b272bc15940cc59f45a73eef008566 /manual/APPNOTE_011_Design_Investigation/foobaraddsub.v | |
parent | 58cca9592d64178a097c6345a576b1df022cd50c (diff) | |
parent | 583ab81670847bc0084708bab04c64cb43bc3a51 (diff) | |
download | yosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.tar.gz yosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.tar.bz2 yosys-7971154e727cc4d7c4b8c62ad43a28645bb66795.zip |
Merge branch 'master' into stat-json-area
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 |