From 06688a9a026292ab4600257fb330311c23ae57ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Wed, 24 Dec 2014 17:07:51 +0000 Subject: [PATCH] got rid of BIT signal types --- vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_crc_logic.vhd | 4 ++-- vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_top_soc.vhd | 4 ++-- vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_transceiver.vhd | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_crc_logic.vhd b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_crc_logic.vhd index 70704c2..57a228f 100644 --- a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_crc_logic.vhd +++ b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_crc_logic.vhd @@ -96,8 +96,8 @@ entity WF1772IP_CRC_LOGIC is -- Preset controls: DDEn : in std_logic; ID_AM : in std_logic; - DATA_AM : in Bit; - DDATA_AM : in Bit; + DATA_AM : in STD_LOGIC; + DDATA_AM : in STD_LOGIC; -- CRC unit: SD : in std_logic; -- Serial data input. diff --git a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_top_soc.vhd b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_top_soc.vhd index d6735bf..5a930f9 100644 --- a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_top_soc.vhd +++ b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_top_soc.vhd @@ -311,8 +311,8 @@ begin DDEn => DDEn, HDTYPE => HDTYPE, ID_AM => ID_AM_I, - DATA_AM => DATA_AM_I, - DDATA_AM => DDATA_AM_I, + DATA_AM => STD_LOGIC(DATA_AM_I), + DDATA_AM => STD_LOGIC(DDATA_AM_I), SHFT_LOAD_SD => SHFT_LOAD_SD_I, DR => DR_I, PRECOMP_EN => PRECOMP_EN_I, diff --git a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_transceiver.vhd b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_transceiver.vhd index 993164f..bc97493 100644 --- a/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_transceiver.vhd +++ b/vhdl/rtl/vhdl/WF_FDC1772_IP/wf1772ip_transceiver.vhd @@ -77,8 +77,8 @@ entity WF1772IP_TRANSCEIVER is HDTYPE : in std_logic; -- Floppy type HD or DD. DDEn : in std_logic; -- Double density select (FM or MFM). ID_AM : in std_logic; -- ID addressmark strobe. - DATA_AM : in Bit; -- Data addressmark strobe. - DDATA_AM : in Bit; -- Deleted data addressmark strobe. + DATA_AM : in STD_LOGIC; -- Data addressmark strobe. + DDATA_AM : in STD_LOGIC; -- Deleted data addressmark strobe. SHFT_LOAD_SD : in std_logic; -- Indication for shift register load time. DR : in std_logic_vector(7 downto 0); -- Content of the data register.