Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - New User Help SynaptiCad

 
Thread Tools Search this Thread
Old 01-06-2007, 02:51 PM   #1
Default New User Help SynaptiCad


Hi,
I'm a new user for work with a fpga components, I use ACTEL Fusion
Starter KIT.
I dont understand why this code dont work in SynaptiCAD when compile
follow code :

-- mytimer.vhd

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

entity mytimer_1 is
port(
clkin: in std_logic;
reset: in std_logic;
start: in std_logic;
led_o: out std_logic
);
end mytimer_1;

architecture behave of mytimer_1 is
signal clkout: std_logic;
signal led: std_logic;

signal counter: std_logic_vector(2 downto 0);
signal tempo: std_logic_vector(19 downto 0);

begin
led_o <= led;
process(clkin) begin
if(rising_edge(clkin)) then
if(tempo = "00000000000000000000") then
tempo <= "11110100001001000000";
clkout <= '1';
else
tempo <= tempo -'1';
clkout <= '0';
end if;
end if;
end process;

process(reset,start,clkout,counter) begin
if(reset='0')then
counter <= "000";
led <= '1';
else
if(start='0')then
led <= '0';
counter <= "000";
else
if(rising_edge(clkout))then
counter <= counter +'1';
end if;
if(counter > "101")then
led <= '1';
counter <= "000";
end if;
end if;
end if;
end process;
end behave;

Regards
Ivano


Ivangray
  Reply With Quote
Old 01-08-2007, 05:30 PM   #2
Andy Peters
 
Posts: n/a
Default Re: New User Help SynaptiCad
Ivangray wrote:
> Hi,
> I'm a new user for work with a fpga components, I use ACTEL Fusion
> Starter KIT.
> I dont understand why this code dont work in SynaptiCAD when compile
> follow code :


What do you mean by "dont (sic) work"?

>
> -- mytimer.vhd
>
> library ieee;
> use ieee.std_logic_1164.all;
> use ieee.std_logic_unsigned.all;

^^^^^^^^^^^^^^^^
This might be your problem. maybe. But "dont work" isn't a reasonable
description of what's going on.
- a



Andy Peters
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP.NET with User Interface Process Application Block robinp Software 0 03-05-2007 10:01 AM
Ajax Atlas not working in User Control faiq Software 0 09-16-2006 08:28 AM
ASP.net cannot get logon user name Molly_K General Help Related Topics 1 08-10-2006 03:48 AM
Any DVD Player that can override User Prohibitions? Walter Traprock DVD Video 3 12-03-2005 11:43 PM
TheDigitalReview: BABE SPECIAL EDITION - DVD REVIEW (User Review) Mike McGee DVD Video 0 12-04-2003 04:52 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46