diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-01-02 09:39:01 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-01-02 09:39:01 +0100 |
commit | b6822eff7218c6a58c3d87e8cfa4985bc3166f89 (patch) | |
tree | ed4f4c3d265f5388a70a7b3c0acf727779c85a7a /src | |
parent | 669dc74413a1b263f3377503d1b2703884550290 (diff) | |
download | ghdl-b6822eff7218c6a58c3d87e8cfa4985bc3166f89.tar.gz ghdl-b6822eff7218c6a58c3d87e8cfa4985bc3166f89.tar.bz2 ghdl-b6822eff7218c6a58c3d87e8cfa4985bc3166f89.zip |
vhdl: fix order of std_ulogic literals. For #1063
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/vhdl-ieee-std_logic_1164.ads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/vhdl-ieee-std_logic_1164.ads b/src/vhdl/vhdl-ieee-std_logic_1164.ads index 487fb56ff..1193bd6f7 100644 --- a/src/vhdl/vhdl-ieee-std_logic_1164.ads +++ b/src/vhdl/vhdl-ieee-std_logic_1164.ads @@ -33,9 +33,9 @@ package Vhdl.Ieee.Std_Logic_1164 is Std_Logic_0_Pos : constant := 2; Std_Logic_1_Pos : constant := 3; Std_Logic_Z_Pos : constant := 4; - Std_Logic_L_Pos : constant := 5; - Std_Logic_H_Pos : constant := 6; - Std_Logic_W_Pos : constant := 7; + Std_Logic_W_Pos : constant := 5; + Std_Logic_L_Pos : constant := 6; + Std_Logic_H_Pos : constant := 7; Std_Logic_D_Pos : constant := 8; -- Extract declarations from PKG. |