diff options
Diffstat (limited to 'testsuite/synth/oper02/min01.vhdl')
-rw-r--r-- | testsuite/synth/oper02/min01.vhdl | 9 |
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; |