LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Sponsors
  • Mirrors
  • Logos
  • Contact us
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cores > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: Redant Steven<redant@i...>
    Date: Thu Jan 29 09:02:10 CET 2004
    Subject: FW: [oc] Translation
    Top

    > My problem is that:
    >
    > My SC_CTHREAD have wait_until's of various signals/ports!
    >
    > It couldn't put wait_until's of different signals/ports in a
    > VHDL process!
    >


    You can do that. But you can't mix it with a sensitivity list. In SystemC you have the different wait's AND a sensitivity list. In VHDL it is either a sensitivity list OR waits in the process.
    E.g. the code below.

    process
    begin

    ...
    Wait on a;

    ...

    wait on b;

    ...

    wait on a;

    end;


    Follow upAuthor
    FW: [oc] TranslationFernando Remus Nagel

     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.