访问电脑版页面

导航:老古开发网手机版其他

将16进制转化为std_logic

导读:
关键字:
VHDL: Converting a Hexadecimal Value to a Standard Logic Vector

This example shows how to convert a hexadecimal value to a std_logic_vector.
It is shown in both VHDL ''87 (IEEE Std 1076-1987) and VHDL ''93 (IEEE Std 1076-1993).
For more information on using this example in your project, go to: http://www.fpga.com.cn


hex.vhd

LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.std_logic_arith.ALL;

ENTITY hex IS
    PORT(
        D : OUT STD_LOGIC_VECTOR(7 DOWNTO 0));
END hex;

ARCHITECTURE a OF hex IS
BEGIN
-- The following line will convert the hex value
-- to a STD_LOGIC_VECTOR in VHDL ''87.

    D(7 DOWNTO 0) <= to_stdlogicvector(x"FC");
   
-- The following line will work in VHDL ''93 (the standard allows
-- this conversion implicitly).
-- D <= x"FC";
END a;
来源:   作者:  2006/9/25 16:50:53
栏目: [ ]

相关阅读

安森美推出新的高功率图腾柱PFC控制器,满足具挑战的能效标准

动态功耗低至60μA/MHz!助力设备超长续航,首选国民技术低功耗MCU!