The flip-flop tag has no wiki summary.
-1
votes
1answer
46 views
How do you feed a file into memory made from custom modules (no reg) like with readmemb?
For example, instead of using reg [3:0] RAM [0:31]; I've made my own module attempting to use using a hardwired FlipFlopMod.
This is what I'm trying to do (but you'll see it obviously doesn't work):
...
2
votes
1answer
40 views
Verilog instantiation error
I'm having an issue simply calling a module for a JK flip flop. Our project is to make a state machine, and My logic is correct, but i'm getting an error that says
"VHDL module instantiation error: ...
0
votes
0answers
72 views
state machine implementation of a simple sequential odd parity generator/checker for a 7 bit memory
I have been able to create an AND-OR 3 bit parity generator/checker before. But im not sure how to do the 7bit. I think I have to use MUX. How would I go about designing it? Do I need a truth table? ...
0
votes
2answers
84 views
Use of Set in a Flip Flop
1)I understand that reset is used in ASIC to start from a known state. Like
always @ (posedge clk or negedge reset)
begin
if (reset)
//Initialize the signals
else
//do something
end
But if this ...
0
votes
1answer
646 views
Difference between Synchronous and Asynchronous reset in Flip Flops
always @ (posedge clk or negedge reset )
begin
//Asynchrous FF
end
always @(posedge clk)
begin
if (reset)
// Synchronous FF
end
What is the difference in the following implementations ? I mean in ...
-1
votes
2answers
183 views
Counter With Frequency divider is not incrementing
The following code is written for an asynchronous counter. The program compiles fine but the counter value doesn't increment after 1. What am I doing wrong?
Here is the code:
//TOP
module ...
1
vote
1answer
291 views
Illegal reference to net error
I wrote this program for a T Flipflop. The output is toggled at every 11th clk. The program is giving me " Illegal reference to net "clkDivider" error.
My question is, what does this error mean? ...
3
votes
2answers
187 views
What is a flip-flop operator?
I have heard and read about flip-flops with regular expressions in Perl and Ruby recently, but I was unable to find how they really work and what the common use cases are.
Can anyone explain this in ...
1
vote
1answer
196 views
Undesiderated 1-bit latch (VHDL)
I'm programming a N-bit non-restoring divider, but I faced a little problem.
I have an Operative Part (combinatorial) and a Control Part (Finite State Machine).
The Control Part has a 2 processes ...
0
votes
2answers
60 views
Cleanest way to generate 8-neighbour coordinates
I'm looking for a way to generate the following sequence of numbers (which are the relative coordinates of a pixel's 8 neighbours, starting with the north-west pixel and ending with the west). The ...
2
votes
1answer
454 views
Divide a clock by 3 without changing the duty cycle?
I searched a lot but I didn't find a good solution. Most answers work only when the duty cycle is 50% but I am searching for a solution that works for clocks with duty cycles like 40%, etc.
0
votes
1answer
580 views
What is wrong with my D flip-flop toggle switch? [closed]
***I am sorry to post this here rather than in Electrical Engineering. Since I am brand new there, I am not allowed to post images. Desperate times call for desperate measures, and I'm sure more than ...
0
votes
3answers
446 views
flip-flop, latch basic concept
i hope someone could help me with this.
I can't get the point of the utility of flip-flops, the point of saving the state. If we want to save the previous state, why don't we simple maintain the ...
0
votes
1answer
239 views
Perl Flip-Flop operator - Global State Issue?
I am doing some text parsing using flip-flop operator and my data looks like below:
COMMAND START
CELL
123
COUNTER1 COUNTER2 COUNTER3
23 25 45
COUNTER1 COUNTER2 ...
2
votes
1answer
1k views
D Flip Flop in VHDL
I'm trying to implement a D Flip Flop in VHDL, using a D Latch I wrote.
But there seems to be an error with the clock, and I can't figure out what that is.
Here is the code for my D Latch.
Library ...
2
votes
1answer
151 views
Perl Flip-flop operator - Is it possible to treat the END of first match as START of next match?
Need some more help on flip-flop operator
Below is my sample data:
LS SPID ASP SPID
3-59 MGW05
SLC ACL PARMG ST SDL ...
-2
votes
4answers
301 views
In Perl can i apply 'grep' command on the data i captured using flip-flop operator directly?
I need to find the 'number' of occurrences of particular words (C7STH, C7ST2C) that come in the output of a command. The command starts and ends with a 'fixed' text - START & END like below. This ...
2
votes
3answers
180 views
Perl: Using the flip flop function and extracting data from within the block read
I have an array called @mytitles which contains a lot of titles such as, say, title1, title2 and so on. I have a file called "Superdataset" which has information pertaining to each title. However, the ...
0
votes
1answer
338 views
Simulate Flip-Flop D ISim 12.3
How can I simulate this vhdl code on ISim 12.3? I know it works because I downloaded to the FPGA but I cannot see a good simulation.
Thanks in advance and sorry if it's too basic but I'm very new to ...
0
votes
2answers
267 views
Minimal number of D flip-flops
I have encountered the following question and can't be sure on the answer. Do you have any suggestions, any help would be much appreciated.
The Fibonacci sequence F(n) is defined by F(1)=1, F(2)=1, ...
1
vote
3answers
575 views
Undefined output of Ring Counter Test waveform
I have modeled 4 bit Ring Counter using D Flip Flop.
The D flip flop is in separate file, included in my workspace. The D flip flop works correctly (gives correct output waveform).
This is the code ...
1
vote
3answers
256 views
Error : Identifier 'q' is not readable in architecture of T Flip Flop
I am trying to model a T Flip Flop using VHDL.
library ieee;
use ieee.std_logic_1164.all;
entity tff is
port (
clk: std_logic;
t: in bit;
q: out bit;
qbar: out ...
1
vote
0answers
695 views
minimal number of d flip-flops required for first seven Fibonacci numbers
I encountered a problem while preparing for a test.
What is the minimal number of d flip-flops required (along) with combinational logic to design a counter circuit that outputs the first seven ...
5
votes
3answers
418 views
Is there a functional programming concept equivalent to the flip-flop operator in Perl or Ruby?
Ruby (and Perl) has a concept of the flip flop:
file = File.open("ordinal")
while file.gets
print if ($_ =~ /third/) .. ($_ =~ /fifth/)
end
which given a list of ordinals, such as
first
second
...
1
vote
3answers
320 views
Can using the ruby flip-flop as a filter be made less kludgy?
In order to get part of text, I'm using a true if kludge in front of a flip-flop:
desired_portion_lines = text.each_line.find_all do |line|
true if line =~ /start_regex/ .. line =~ /finish_regex/
...
0
votes
1answer
328 views
flip-flop-operator/readline-counter question
Reading this http://stackoverflow.com/questions/4069243/perl-extract-rows-from-1-to-n-windows I didn't understand the flip-flop-operator/readline-counter part.
perl -nE 'say $c if $c=1..3' my_file
...
1
vote
2answers
449 views
SR Flip Flop and D Flip Flop [closed]
I know this isn't really a programming question, but it is definitely computer related and someone might know this.
How do you construct a SR flip-flop with a D flip-flop and other logic gates?
I ...
3
votes
1answer
190 views
Calling 'scalar' on the results of the range operator (..) in Perl
So, I believe this has something to do with the difference between arrays and lists, but I don't understand what's going on here. Can anyone explain how and why Perl treats an expression like (1..4) ...
27
votes
6answers
1k views
Is Perl's flip-flop operator bugged? It has global state, how can I reset it?
I'm dismayed. OK, so this was probably the most fun Perl bug I've ever found. Even today I'm learning new stuff about Perl. Essentially, the flip-flop operator .. which returns false until the ...
13
votes
3answers
2k views
When would a Ruby flip-flop be useful?
I think I understand how a flip-flop works thanks to a tutorial, but the example there is contrived just for teaching. Can anyone give an example of how you have actually used or would use a ...

