导航: 老古网老古论坛XMOS公共讨论区XMOS开源项目区单片机程序设计嵌入式系统广告区域
→求救[taiyang1999]

 *第38512篇: 求救

  
楼 主:taiyang1999 2006年3月15日16:31
 求救
很简单的小程序,不知为什么总通不过

library ieee;
use ieee.std_logic_1164.all;

entity aqw is port (
   in1 : in bit_vector;
   in2 : in bit_vector;
   pout : out bit_vector ;
 cnt1: in bit);
end aqw;

architecture func of aqw is
begin
   pout   <= in1 when cnt1 ='0' else
    in2 ;
end  func


编译时出这样的错:
project has no output or bidirection pins in the top_level design

这是什么原因,郁闷,请大侠帮忙!!!谢谢


>>>>>>对该主题发表你的看法

本主题贴数1,分页: [第1页]


[上一篇主题]:国际嵌入式认证上海招生....

[下一篇主题]:用C语言编程,最后结果在那里啊?是在DPTR中吗?