Complete the code to include the standard logic library.
library [1];The library ieee; statement includes the IEEE standard libraries needed for VHDL designs.
Complete the code to use the standard logic 1164 package.
use ieee.[1].all;The std_logic_1164 package defines the standard logic types used in VHDL.
Fix the error in the use clause to correctly include the numeric standard package.
use ieee.[1].all;The numeric_std package provides arithmetic operations for vectors and is included with use ieee.numeric_std.all;.
Fill both blanks to include the math real package from IEEE.
library [1]; use ieee.[2].all;
The math_real package is part of the IEEE library and is included with library ieee; and use ieee.math_real.all;.
Fill all three blanks to include the work library and a custom package named 'my_pkg'.
library [1]; use [2].[3].all;
The work library is used for user-defined packages. To use a package named my_pkg in the work library, write library work; and use work.my_pkg.all;.