关于1个VHDL 编译错误

2019-03-25 09:13发布

LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE ieee.std_logic_arith.all;
USE ieee.std_logic_unsigned.all;

USE ieee.numeric_std.ALL;
LIBRARY lpm;
USE lpm.lpm_components.all;

ENTITY test IS
        GENERIC (MIO_TOTAL : INTEGER :=64 );        --考虑到IO输入点少1个,64-1=63
        PORT(
        osc_clk                : IN STD_LOGIC;   ---local端时钟信号
                -------------------
                io_output: buffer std_logic_vector(7 downto 0)

        );
      
END test;


ARCHITECTURE rtl OF test IS





        SIGNAL io_tog: STD_LOGIC_VECTOR (7DOWNTO 0):="01001000";
--        SIGNAL io_tog: STD_LOGIC;


begin

io_output<=io_tog SLA 0;



end rtl;

编译时出现 can't determine definition of operator ""sla""--found 0 possible definitions
这种是什么错误  怎么解决 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
1条回答
eeleader
1楼-- · 2019-03-25 17:24
 精彩回答 2  元偷偷看……

一周热门 更多>