diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-12-31 09:35:35 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-12-31 09:35:35 +0100 |
commit | 34ed11915eb330f36ba2aa0f8265ab5cb7bdf959 (patch) | |
tree | 8a7339bbedd403ceae709d04ed523a18da94b96d /testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams | |
parent | 8a60406d94e89804a5a52afb95bdac4c3bdd7f40 (diff) | |
download | ghdl-34ed11915eb330f36ba2aa0f8265ab5cb7bdf959.tar.gz ghdl-34ed11915eb330f36ba2aa0f8265ab5cb7bdf959.tar.bz2 ghdl-34ed11915eb330f36ba2aa0f8265ab5cb7bdf959.zip |
testsuite/vests/vhdl-ams: fix some tests.
Diffstat (limited to 'testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams')
-rw-r--r-- | testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams b/testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams index f0ea59d1c..4d593777f 100644 --- a/testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams +++ b/testsuite/vests/vhdl-ams/ad-hoc/fromUC/simultaneous_stmts/test183.ams @@ -34,7 +34,7 @@ -- this model tests for the correst implementation of the 'above -- statement. PACKAGE electricalSystem IS - NATURE electrical IS real ACROSS real THROUGH; + NATURE electrical IS real ACROSS real THROUGH gnd reference; FUNCTION SIN(X : real) RETURN real; alias ground is electrical'reference; END PACKAGE electricalSystem; @@ -50,7 +50,7 @@ end product; architecture pro of product is constant in1:real:=10.0; constant in2:real:=1.0; -signal outofbound:out boolean; +signal outofbound: boolean; begin outofbound<=true; |