- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
I need to create component witch work like shift register for 4 bit signal . How can I do that?Link Copied
4 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Got a favourite language? In VHDL you could do something like: b <= b(2 downto 0) & '0'; assuming b is defined as a four bit std_logic_vector. Mark.- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you could do that, but it wont work without registers. Its called a shift register for a reason...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--- Quote Start --- you could do that, but it wont work without registers. Its called a shift register for a reason... --- Quote End --- Well, yeah, the behaviour of that line of code is entirely dependent on what's around it. On it's own it doesn't hold a value or anything. The OP's question was a little vague... Mark.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for answer!!!

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page