aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/oper02/min01.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-10 20:42:02 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-10 20:42:02 +0100
commitbe40560c399be55a0145feec81a07fa89bf6704f (patch)
tree745c592bcd93eb9733e55a4dcced4e630518bf87 /testsuite/synth/oper02/min01.vhdl
parent63e0082aa92df57f99347ace07b706b51b7fd4c9 (diff)
downloadghdl-be40560c399be55a0145feec81a07fa89bf6704f.tar.gz
ghdl-be40560c399be55a0145feec81a07fa89bf6704f.tar.bz2
ghdl-be40560c399be55a0145feec81a07fa89bf6704f.zip
testsuite/synth: add tests for previous commit.
Diffstat (limited to 'testsuite/synth/oper02/min01.vhdl')
-rw-r--r--testsuite/synth/oper02/min01.vhdl9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/synth/oper02/min01.vhdl b/testsuite/synth/oper02/min01.vhdl
new file mode 100644
index 000000000..1a90db24d
--- /dev/null
+++ b/testsuite/synth/oper02/min01.vhdl
@@ -0,0 +1,9 @@
+entity min01 is
+ port (a, b : natural;
+ o : out natural);
+end min01;
+
+architecture behav of min01 is
+begin
+ o <= minimum (a, b);
+end behav;