ERROR:HDLParsers:800 - "C:/ISE/RAM/ram.vhd" Line 219. Type of DOP is incompatible with type of DO.
ERROR:HDLParsers:800 - "C:/ISE/RAM/ram.vhd" Line 223. Type of DIP is incompatible with type of sw.
Код: Выделить всё
port map (
DO => DO (7 downto 0), -- 8-bit Data Output
DOP => DO(8), -- 1-bit parity Output
ADDR => adr_reg, -- 11-bit Address Input
CLK => mCLK, -- Clock
DI => sw, -- 8-bit Data Input
DIP => sw(0), -- 1-bit parity Input
EN => EN, -- RAM Enable Input
SSR => RST, -- Synchronous Set/Reset Input
WE => WREN -- Write Enable Input
);
p.s. Гы!!!!!! я ж говорил. Найдите 10 отличий:
Код: Выделить всё
port map (
DO => DO (7 downto 0), -- 8-bit Data Output
DOP => DO (8 downto 8), -- 1-bit parity Output
ADDR => adr_reg, -- 11-bit Address Input
CLK => mCLK, -- Clock
DI => sw, -- 8-bit Data Input
DIP => sw(0 downto 0), -- 1-bit parity Input
EN => EN, -- RAM Enable Input
SSR => RST, -- Synchronous Set/Reset Input
WE => WREN -- Write Enable Input
);
