Clock Edge notation

Symon wrote:
In the past, I've kept the entity ports as slv, just using unsigned etc.
within the architecture. Partly because of reuse, easier for others to
understand on a multiple person team, etc. Now that numeric.std has been
standardised, I wonder if there's a reason to do this anymore?
If you have unsigned as primary IOs on your FPGA, xilinx tools will
replace them with slv on the gate level model and break your testbench.
-JCC
 
"Jeff Cunningham" <jcc@sover.net> wrote in message
news:hPeqc.2181$Hf.1277774@newshog.newsread.com...
Symon wrote:
In the past, I've kept the entity ports as slv, just using unsigned etc.
within the architecture. Partly because of reuse, easier for others to
understand on a multiple person team, etc. Now that numeric.std has been
standardised, I wonder if there's a reason to do this anymore?

If you have unsigned as primary IOs on your FPGA, xilinx tools will
replace them with slv on the gate level model and break your testbench.
This was part of my problem, one of the slv's was part of the input
specification to the pwm unit (8 bits of 'current count' data), comparing an
SLV to an unsigned gives an error message (something about 6 possible ways
to interpret the result), even unsigned(slv) gives that error, but
unsigned/unsigned compares work as do slv/slv compares. I was just curious
if the slv/slv compare was done by default as signed or unsigned.

--Chuck
 
"Chuck McManis" <devnull@mcmanis.com> writes:

"Jeff Cunningham" <jcc@sover.net> wrote in message
news:hPeqc.2181$Hf.1277774@newshog.newsread.com...
Symon wrote:
In the past, I've kept the entity ports as slv, just using unsigned etc.
within the architecture. Partly because of reuse, easier for others to
understand on a multiple person team, etc. Now that numeric.std has been
standardised, I wonder if there's a reason to do this anymore?

If you have unsigned as primary IOs on your FPGA, xilinx tools will
replace them with slv on the gate level model and break your testbench.
Yes - I tend to keep unsigned's for within module use, although I do use
them on certain entity's that won't go to the outside.

This was part of my problem, one of the slv's was part of the input
specification to the pwm unit (8 bits of 'current count' data), comparing an
SLV to an unsigned gives an error message (something about 6 possible ways
to interpret the result), even unsigned(slv) gives that error, but
unsigned/unsigned compares work as do slv/slv compares. I was just curious
if the slv/slv compare was done by default as signed or unsigned.
If you're using the synopsys std_logic_[un]signed or arith libraries
then it will get done however those libraries happen to do it - which
I've never been clear on, as I stick to numeric_std! If you're using
numeric_std, then I don't think slv/slv compares should work.

Cheers,
Martin

--
martin.j.thompson@trw.com
TRW Conekt, Solihull, UK
http://www.trw.com/conekt
 
Chuck McManis wrote:


This was part of my problem, one of the slv's was part of the input
specification to the pwm unit (8 bits of 'current count' data), comparing an
SLV to an unsigned gives an error message (something about 6 possible ways
to interpret the result), even unsigned(slv) gives that error, but
unsigned/unsigned compares work as do slv/slv compares.
use IEEE.numeric_std.all;


if ((unsigned)some_slv = some_unsigned_vector) then
...


Just convert both vectors to the same type. It cost you a little time
for typing, but a well-defined behavior for unsigned / signed data.


Ralf
 
"Mike Treseler" <mike_treseler@comcast.net> wrote:
Take sdata_in out of the sensitivity list and
you have a synchronous process that will
sim and synth the same way.

Hmmm. Why are we making bytes in the first place?
-_______--______----____-------_

Don't we just want to preset a counter
while the data is high and count down
while it is low?
Well if we were doing one PWM channel perhaps. My goal is to have several
PWM channels.

Constraints on my design are that I want to be able to "clock in" the
various widths behind the running the circuit. Then, once I have the next
set of widths ready to go, to assert "load" and at the start of the next PWM
period, all PWM channels running at their new value.

As a roboticist, and a "hobby" one at that, one application of this
technique is to build a device for driving a number of R/C servos that can
be programmed with a serial bitstream, and then commanded to operate
synchronously. This level of control is essential in using R/C servos to
control articulated walking robots for example. (google on the term Robo-One
for examples)

I'd like to build it out of a CoolRunner CPLD. I am, perhap prematurely,
trying to be stingy on flip flops to save macrocells. If I create a single
"master counter" that is counting through its iterations, then I can create
a PWM output which consists of 'n' flip flops (equivalent to the counter
width) and some combinitorial logic that implements an n-bit compare. So if
my count width is 'n' then my macrocell count is (pwm_channels + 1) x 'n'.
This is because I can use the same macro cells for both the latch and the
comparator. The more channels I can get into the CPLD, the fewer CPLDs I'll
need. Many Robo-one robots have 27 degrees of freedom (that is a lot of PWM
channels :).

The synchronous change facility is a "freebee" once I've isoloated the
serial shift register chain from the pwm generator channels (I end up
burning another n macro cells for each channel making it (2 * pwm_channels +
1) x 'n' macrocells.

There is some other magic with them being synchronous but not simultaneous
but I'm not close to needing that stuff yet. :)

--Chuck
http://www.mcmanis.com/chuck/robotics/
 
Przemo77 a écrit:
Urgently looking for working model - number 74194 series TTL in VDHL
language. I would really appreciated in anybody could help me find this
piece of software or point the place where I can find it on the Internet
Rule one: Google is your friend

--
____ _ __ ___
| _ \_)/ _|/ _ \ Adresse de retour invalide: retirez le -
| | | | | (_| |_| | Invalid return address: remove the -
|_| |_|_|\__|\___/
 
"Przemo77" <pbar@tlen.pl> wrote in message news:<c9npuf$em2$1@news.dialog.net.pl>...
Urgently looking for working model - number 74194 series TTL in VDHL
language. I would really appreciated in anybody could help me find this
piece of software or point the place where I can find it on the Internet
You can get a data sheet for this device at the the Texas Instruments website:
http://www.ti.com/

Charles
 
Hi Przemo77,

This is a bidirectional shift register, and it's obsolete.
You can easily made a behavioral equivalent, or take any code of shift
register.

Do you need the functional model, or the VITAL once ?

Rgrds,
JaI



Przemo77 wrote:

Urgently looking for working model - number 74194 series TTL in VDHL
language. I would really appreciated in anybody could help me find this
piece of software or point the place where I can find it on the Internet
 
"mx" <mx@mx.com> escribió en el mensaje
news:0V4Fc.84714$s25.47872@newssvr29.news.prodigy.com...
<snip>
(c) If the customer is acquired (purchased) by another company, the
EDA-software is non-transferrable.
and could somebody tell why's that? the furniture guys dont expect the new
owner of the company to pay them again for the furniture sitting in the
offices, why would we have to pay then to the software guys?

Thankfully within industry, the
standard practice is for the vendor to permit the ownership transfer, as
long as the new owner continues to pay the maintenance/support contract
obligations. This is cheaper for the new owner, because they don't
have to 're-purchase' the licenses (large one-time non-recurring
expense), rather merely pay the quarterly/yearly support-fee (smaller
recurring expense.)
that's more reasonable...
 
"roller" <trash_nospam@hotmail.com> writes:

"mx" <mx@mx.com> escribió en el mensaje
news:0V4Fc.84714$s25.47872@newssvr29.news.prodigy.com...
snip
(c) If the customer is acquired (purchased) by another company, the
EDA-software is non-transferrable.

and could somebody tell why's that? the furniture guys dont expect the new
owner of the company to pay them again for the furniture sitting in the
offices, why would we have to pay then to the software guys?
You *buy* furniture, you *license* software. The devil is in the
lawyers^Wdetails.

Thankfully within industry, the
standard practice is for the vendor to permit the ownership transfer, as
long as the new owner continues to pay the maintenance/support contract
obligations. This is cheaper for the new owner, because they don't
have to 're-purchase' the licenses (large one-time non-recurring
expense), rather merely pay the quarterly/yearly support-fee (smaller
recurring expense.)
Yup, that's my experience as well.

Regards,


Kai
 
"Kai Harrekilde-Petersen" <khp@harrekilde.dk> escribió en el mensaje
news:ulli1cvvf.fsf@harrekilde.dk...
"roller" <trash_nospam@hotmail.com> writes:

"mx" <mx@mx.com> escribió en el mensaje
news:0V4Fc.84714$s25.47872@newssvr29.news.prodigy.com...
snip
(c) If the customer is acquired (purchased) by another company, the
EDA-software is non-transferrable.

and could somebody tell why's that? the furniture guys dont expect the
new
owner of the company to pay them again for the furniture sitting in the
offices, why would we have to pay then to the software guys?

You *buy* furniture, you *license* software. The devil is in the
lawyers^Wdetails.
(i know it'd be proably off-topic, mostly naive and stupid question, but
i've never cared about licenses before so i dont know, i hope this will
enlight me)

yeah ok, but why it has to be that way? i mean, it's not even like if they
were giving you upgrades or anything!
besides, again, why cant we own software? who came up with the idea that
software, which is a "tool" has to be licensed instead of bought when i can
go to a hardware store and get any "tool" and do whatever i want with it. To
have a more related example, Intel doesnt care what i do with PCs.
It's like i buy a PC with WinXP preinstalled (which most of the time you
dont even get the chance to choose if you want it or not; and if they sell
it without, you dont even get a discount), and then if i sell it, i have to
sell it without the OS?
what's the deal with that? a phone has software inside, and if i sell it, i
sell it with the software, i wont go around erasing it do i?
i just dont understand why it has to be different.

Thankfully within industry, the
standard practice is for the vendor to permit the ownership transfer,
as
long as the new owner continues to pay the maintenance/support contract
obligations. This is cheaper for the new owner, because they don't
have to 're-purchase' the licenses (large one-time non-recurring
expense), rather merely pay the quarterly/yearly support-fee (smaller
recurring expense.)

Yup, that's my experience as well.

Regards,


Kai
 
Someone left the door unlocked at the loony bin!


"She" <lovedit@adultseries.net> wrote in message
news:yv9Jc.22223$%A6.1120@charlie.risq.qc.ca...
And do you dream of fingering Lisa Simpson's hole?

They give it free on http://TOONTOON.COM///ximpsons

Then try HTTP://comicsorgy.com////simpsons for
xtra intimate scenes of Marge & Homer drinking eachothers' sex juices.

You try also Http://ADULTSERIES.net////simpsons-xxx/index.html for
more candid portraits of Lisa and Bart touching their privates.







Willingly <openedher@adultseries.net> wrote in message
news:lwGcxTwFSBZgynh1gprUdUCSH7d6DcYq@adultseries.net...

legs until her lips parted for him She looked at Bart wet


gppv84f
 
what are scripts, what are theire applications in vlsi design and
verification?

Have a look here:
http://www.google.com/search?hl=en&lr=&ie=UTF-8&oi=defmore&q=define:Script

In the electronic design context, it's usually a text file with a
number a commands that a particular program/tool has to execute. And
example would be a synthesis script: it contains commands of the
synthesis tool that guide it on how to convert VHDL into gates. A lot
of tools provide a graphical interface to do this, but as people gain
experience with the tool, they find out it's usually quicker to specify
a number of settings in a file that can be copied etc.

Sometimes, scripts can evolve into larger full-blown programs. Most
electronic design tools that support scripting use TCL (Tool Command
Language) as the underlaying scripting language (which 1000 years from
now will be considered proof that Darwin's theory doesn't always get it
right, but that's another discussion altogether.)

There are a number of general purpose scripting languages that allow
one to automate a certain process (again, it's basically a program, but
much quicker to write than, say, C code). In verification, a typical
script would be a regression script: it goes through all the tests that
have been written for a certain design, run the simulation one after
the other and gather the results.
Popular scripting languages are Perl, Python and (grmmbl) TCL.

Tom
 
Hi Rajan,
Pl add the "sel" in sensitivity list and assign the value to
out_5,....,out_8 at sel = '1' and value to out_1,....,out_4 at sel = '0'
 
Pl add the "sel" in sensitivity list and assign the value to
out_5,....,out_8 at sel = '1' and value to out_1,....,out_4 at sel = '0'
Is'nt it what he is doing now? It was mentioned that latches will be
incured.
 
In article <ch2j0j$1bc$1@reader08.wxs.nl>, rajan100000@hotmail.com
says...
Hi,

I want to ask you if the following code written is correct:

process (in_1, in_2, in_3, in_4, in_5, in_6, in_7, in_8)
begin
if (sel = '1') then
out_1 <= in_1;
out_2 <= in_2;
out_3 <= in_3;
out_4 <= in_4;
else
out_5 <= in_5;
out_6 <= in_6;
out_7 <= in_7;
out_8 <= in_8;
end if;
end process;

I would appreciate your help.

Thank you.

rajan
IMHO the simplest way to write a 2-way multiplexer for switching
between 2 signals is :

MuxedOut <= SignalA when sel= '1' else SignalB;

This is short and there is no need to worry about sensitivity
lists.

The second recommandation for you is to learn to use
vectors.
It is much more readable and less error prone if you
write

out(4 downto 1) <= input(4 downto 1);

instead of writing 4 single assignments.

Best regards

--
Klaus Falser
Durst Phototechnik AG
kfalser@IHATESPAMdurst.it
 
IMHO the simplest way to write a 2-way multiplexer for switching
between 2 signals is :

MuxedOut <= SignalA when sel= '1' else SignalB;

This is short and there is no need to worry about sensitivity
lists.


Will these internal muxes be supported in VHDLXX

MuxedOut <= A when S1 else (B when S2 else C);


???
 
"valentin tihomirov" <valentin_NOSPAM_NOWORMS@abelectron.com> wrote:
Will these internal muxes be supported in VHDLXX

MuxedOut <= A when S1 else (B when S2 else C);
Yes, at least if you remove the brackets.

You have two conccurent muxes with some different behavior. Both could
be used to build simple 2-to-1 Muxes.

1)
WITH Mux_selector SELECT
output<=A WHEN '0',
B WHEN '1';
2)
output<=A WHEN Cond1 ELSE
B WHEN Cond2 ELSE
C;

bye Thomas
 
rec.outdoors.rv-travel,comp.periphs.scsi,alt.culture.internet,rec.toys.vintage,comp.lang.vhdl
matt parker alias anya_parker matt parker alias nadzaitz
matt parker alias ericvanlunsenherzog matt parker alias phrocrew matt
parker alias ericvan_lunsen_hout fuckme matt parker alias erik
vanlunsenherzog matt parker alias michelle matt parker alias erikvan
lunsenhout matt parker alias erikvonlunsenherzog matt parker alias
eric_vonlindt matt parker alias super_machines matt parker alias
deepshredder matt parker alias erik von lindtherzog matt parker alias e_von_lindthout matt parker alias eric vonlindt matt parker alias mattparker matt parker impersonates clients to make them seem guilty of his criminal activities orgasim matt parker alias eric_vonlint matt parker alias dq matt parker alias eric van lindthout matt parker sells underage mail order brides on the web matt
parker alias e_vonlunsenherzog matt parker alias p ure matt
parker alias evanlindt matt parker alias eric_vanlunsen_hout matt
parker alias ericvonlunsen hout matt parker alias erikvon lindt herzog
matt parker alias super_machine matt parker alias m_parker matt parker
alias erik von lint herzog kondums matt parker alias
erik_von_lindthout matt parker alias kim_parker matt parker alias eric
van linthout matt parker alias ericvan lint hout matt parker alias erik von lindt herzog matt parker alias e vanlunsenhout matt parker alias erikvon_lindt_herzog ejaculatings matt parker alias erikvan_lindt matt parker alias e von lint intercourse piss matt parker alias ericvan lunsen herzog matt parker alias ericvan_lindt_herzog matt parker alias e_vanlunsen_hout matt parker alias
sergey_smith matt parker alias e_van_lunsen_herzog matt
parker alias erikvon lunsen matt parker alias ericvon lint hout matt
parker alias erik_vonlunsenhout adult images hotsex matt parker alias
super machine matt parker alias e_van_lindt matt parker alias eric von
lunsen gaysex matt parker alias e von lunsenherzog matt parker alias
e_vonlunsen matt parker alias e_von_lint_herzog fistfuck
matt parker alias eric_vonlindtherzog matt parker alias e
parker phuk matt parker alias ericvonlinthout matt parker alias erik
von lindthout matt parker alias erikvon_lindt_hout matt parker alias
eric van lintherzog perversion faggs matt parker alias e von lindt
marijuana matt parker alias erik_van_lindt_herzog matt parker alias
evon_lindt_hout matt parker alias ericvonlunsen herzog matt
parker alias eric_vonlindthout exhibitionist matt parker
alias evanlint matt parker alias erikvan_lunsen matt parker alias n
zaitzeva motherfuckin matt parker alias tatyana dchenka matt parker
alias eric vonlint hout matt parker alias erik_van_lunsen matt parker
alias evanlindtherzog matt parker alias erikvan_lunsen_herzog matt
parker alias e van lunsen hout cyberfucking cyberfuckers jiz
matt parker alias eric_van_lindtherzog matt parker alias evon lunsen hout stay away from eurobrides.com or be hacked and scammed ass stole matt parker alias e vonlindt matt parker alias willow matt parker alias tanja dchenka matt parker alias ericvan_lunsenherzog his mailbox is matt parker alias erik vanlint smolders pl 1 pb 223 leuven 3000 belgium matt parker alias erikvon_lindtherzog
bomb matt parker alias e_van_lunsenhout matt parker alias
eric von lunsen herzog matt parker alias erik vanlunsen hout matt
parker alias yda faggot matt parker alias evan linthout matt parker
alias ccc_t matt parker alias tania_dchenka matt parker alias
evanlunsenherzog matt parker alias gerald jones matt parker alias
ericvanlindt_herzog matt parker alias erik_vanlinthout cuntlicker
cocks
matt parker alias tanya_dochenkova matt parker alias erik
lunsen matt parker alias eric_von_lindt_hout matt parker alias erik
van lindt herzog matt parker alias best_dayisnow mothafucker smut matt
parker alias e vanlindt herzog matt parker of rainypasslodge.com
supports illegal arms trafficking and terrorist activities matt parker
alias e_van_lintherzog groupsex adult entertainment kummer
matt parker alias ericvonlint herzog matt parker alias
sam_smith shitting matt parker alias t_dochenkova matt parker alias
erik_von_lunsen_hout matt parker alias ericvanlunsen_herzog sluts
rebuild the cuntface of the spamming scammer matt parker
http://tinyurl.com/452ch lust nudity matt parker illicitly publishes
personal data that he steals from hacked mailboxes matt parker alias
jj one
of the dismissed university employees committed suicide matt parker alias e van lint hout matt parker alias e_von_lunsenherzog matt parker alias e lint prick matt parker alias erik vanlindt matt parker alias eric vanlunsenhout anybody providing proof of the death of matt parker will receive a huge reward matt parker alias ericvan lunsen hout cummer spunk latvia matt parker alias
aniaparker matt parker alias erikvanlunsen_hout matt parker alias jjones matt parker alias eric vanlindthout adult movies matt parker alias evan_lunsenherzog matt parker alias e van linthout matt parker alias eric_von_lint_herzog matt parker alias erik vanlint matt parker alias evonlint hout matt parker alias evan_lunsen matt parker alias erik von lunsenherzog matt parker alias
e_von_lindt_hout matt parker alias eric_vanlunsen kum matt parker alias eric_vanlindtherzog matt parker alias ericvon lint herzog matt parker alias erikvanlindt hout matt parker alias nadejda_zaitzeva matt parker alias evonlindt anticommercial matt parker alias matthew parker pornography matt parker alias eric von lint hout never submit a real email address to trueloves.com farts matt
parker alias erik von lunsenhout single women matt parker alias ccc_tournament matt parker alias d_georg matt parker alias e_vanlint_hout matt parker alias evonlint_hout matt parker alias ericvanlint_herzog matt parker alias erik van lint matt parker alias eric_van_lindt_hout jerk-off matt parker is a pedophile and child molester with many fake pseudonyms and multiple personalities matt
parker alias eric von lindt herzog matt parker alias e_vanlindt phukking shitings nudes cumshot matt parker alias eric vanlinthout matt parker alias tanja_dochenkova matt parker alias erik_vanlint cocksucker dicks matt parker alias sergismith matt parker alias tatianadchenka motherfucker matt parker alias e_von_lunsen_herzog matt parker alias erik_van_lindthout matt parker alias e
vanlunsen motherfuckers matt parker alias evan_lint_hout matt parker alias erikvon lindthout matt parker alias e_van_lunsen_hout phuking damn matt parker alias e_van_linthout matt parker alias anjaparker matt parker alias eric parker matt parker alias eric_von_lunsen_hout fistfucking matt parker alias phrozen crew porn matt parker alias ericvanlunsenhout matt parker alias peacenow matt
parker alias evan lintherzog matt parker is belgian about
forty years old with dark hair and lives in cottage grove oregon matt
parker alias evon lindt hardcoresex matt parker alias e_vonlint_hout
screwing amateur videos matt parker alias evon linthout matt parker
alias e vonlinthout matt parker alias erik vanlindt hout matt parker
alias evon_lint_herzog matt parker alias kimberly parker
matt parker alias erik_van_lunsen_hout matt parker alias e
vanlint matt parker alias eric_van_lunsen_hout matt parker alias evan
lint matt parker alias eric_van_lunsenhout cunilingus matt parker
alias phrozen_crew matt parker alias ruguide.com matt parker alias
eric von lindtherzog matt parker alias eric vonlindthout matt parker
alias e von lunsenhout matt parker alias erikvon_lunsen_hout
fuks matt parker alias supermachine pisses matt parker alias ericvan lindt herzog matt parker alias eric_von_lunsenherzog matt parker alias erik_vanlindtherzog threesome matt parker alias eric vonlint herzog matt parker trades in teenage brides from russia and the philippines matt parker alias sergejsmith matt parker alias erikvon lintherzog matt parker alias tatyanadchenka matt parker
threatens the life of those that file complaints against his sites matt parker makes false accusations to make others seem guilty of his criminal activities matt parker alias eric van lindt hout matt parker owns dating sites since their clients are unlikely to complain and admit their membership tits matt parker alias ericvon_lint_hout matt parker alias evan_lindthout matt parker alias
erikvanlunsenhout matt parker alias erik_vanlunsenhout matt
parker alias eric_vonlunsen matt parker alias sergei smith zoophile
matt parker is a gay masochist whose ass will be raped by gangs of fat
black jail bubbas matt parker alias erikvon lint matt parker alias
eric vanlint herzog matt parker alias evonlindthout matt parker alias
annparker matt parker alias ericvon lunsen matt parker
alias ericvonlintherzog matt parker alias erikvan lindtherzog matt parker alias tdchenka matt parker alias eric van lunsen motherfucking matt parker alias eric_vonlunsenherzog schemers matt parker alias erik_vanlindthout matt parker alias ag matt parker alias ericvonlint_hout matt parker alias chess_base matt parker alias eric lint cuntlick matt parker alias erik vanlindt herzog matt
parker alias e_vanlunsen matt parker alias eric_vanlinthout his real address is matthew s. parker 1505 ash ave cottage grove 97424 oregon usa matt parker alias eric_vonlunsen_hout matt parker alias erik_vonlint_herzog lithuania beastial matt parker alias ericvonlint_herzog slut kums matt parker has friends all over the world whose joy in life is exterminating dissatisfied clients matt
parker alias erik_von_lintherzog matt parker alias
eric_vanlindthout matt parker alias deep shredder matt parker alias
erikvonlunsen_hout cocksucking matt parker alias an_dyc matt parker
alias erikvanlindt_hout matt parker alias samsmith matt parker alias
erik vonlindthout matt parker alias cy matt parker alias
tatjanadochenkova never submit true personal data to trueloves.com
matt parker
alias evon_lunsenhout fingerfucking matt parker alias
bestdayis_now horniest matt parker alias tdochenkova matt parker alias
erik_vanlindt_hout matt parker alias e van lindt herzog matt parker
alias evon lintherzog matt parker alias ania parker romance
masturbation matt parker alias erikvan lindthout matt parker alias
d_shredder matt parker alias ericvonlindtherzog boob matt parker alias
eric vonlunsen matt parker alias erik von lunsen matt parker
alias tanya_dchenka fistfuckers kondum matt parker alias erikvonlint
herzog asshole matt parker alias eric van lunsen hout matt parker
alias e_vanlindthout matt parker alias ericvon lindtherzog matt parker
alias erik_van_lindt_hout cum matt parker alias ericvon lindt herzog
matt parker alias erikvon_lint_herzog fingerfucks matt
parker alias ericvan_lint matt parker alias ericvan lindt hout matt parker alias erikvanlunsen hout fuck matt parker alias erik van lindtherzog matt parker is webmaster of eurobrides.com and all sites in ip range 66.70.45.10 to 39 matt parker alias ericlindt matt parker alias erik_von_lint matt parker alias sergej_smith matt parker alias eric_van_lunsen matt parker alias eric vanlindt
hout matt parker alias taniadchenka anybody providing proof of having harmed matt parker his wife and relatives will be rewarded matt parker alias ericvanlindt hout fetish matt parker alias erikvanlint hout matt parker alias ericvanlindthout matt parker alias evanlunsen_hout matt parker alias ericvonlindthout matt parker alias evanlindt_herzog asian women matt parker alias
evon_lunsen_hout fingerfuckers matt parker alias e_vonlindt_herzog matt parker alias ericlunsen matt parker alias ericvon_lunsen_herzog matt parker alias matt parker matt parker alias erikvon_lindthout matt parker alias e van lunsen report matt parker to portland@fbi.gov and http://tinyurl.com/5ubpd matt parker alias anya parker ejaculation cumshots matt parker alias kparker matt parker
alias e von lindt herzog matt parker alias erikvon_linthout matt parker alias erik_von_lindt_hout pussies matt parker alias e_von_lunsenhout matt parker alias ericvan_lint_herzog matt parker alias bestdayisnow matt parker alias ericvan_linthout matt parker alias e van lindt money mothafuckas matt parker alias erik vonlindtherzog matt parker alias an dyc matt parker alias t dchenka matt
parker alias ladiest whore matt parker alias a parker matt parker alias erik_vanlintherzog adult pics matt parker alias e vonlunsen herzog matt parker alias eric vanlint beastility matt parker alias e_van_lint matt parker alias t_dchenka matt parker alias e vonlunsen matt parker alias eric von lindthout matt parker alias erikvonlindt_hout matt parker alias e_vonlunsenhout matt parker
alias matthewparker matt parker alias nad_zaitz matt parker alias evanlint_herzog matt parker alias erik vonlint herzog far east matt parker alias erik lindt jack-off matt parker alias evonlindt herzog nudity matt parker alias e_vanlunsenherzog matt parker alias eric vanlindt all personals at eurobrides.com are fake and the whole site sucks matt parker alias e_vonlint matt parker alias
e_vonlindthout matt parker alias sam smith matt parker alias
eriklint if this were not true matt parker would not bother to react
to this statement gangbangs matt parker alias erik_lint matt parker
alias eric_van_lint_hout matt parker alias e von lint hout matt parker
alias eric van lunsen herzog matt parker alias ericvon_linthout
krgyzstan tit matt parker alias evan_lindt_herzog fartings
matt parker alias e_von_linthout matt parker is a filthy motherfucker that likes computer chess games matt parker alias eric vanlunsen hout matt parker alias best dayis now there is a price on the head of the wanker matt parker matt parker alias e vonlunsen hout matt parker alias erikvon_lunsenhout matt parker alias eric_van_lindt_herzog teen pics matt parker alias evonlinthout matt
parker alias eric von lindt hout matt parker alias erik van lunsen hout matt parker alias eric vanlunsen exhibitionism matt parker alias c base voyeurism matt parker alias nadejdazaitzeva matt parker alias evanlindt herzog matt parker alias geraldjones matt parker alias evanlunsenhout matt parker alias ericvan_lindthout matt parker alias erikvonlindthout western union matt parker alias
evanlunsen matt parker alias erikvonlindt matt parker alias erikvon lunsen hout matt parker alias ericvon_lint motherfuckings matt parker alias tatyana_dochenkova phuq matt parker alias eric_von_lindtherzog ukraine marriage matt parker distributes illegal software and warez that infringe the copyright law bitch beastiality matt parker alias jerry jones matt parker alias eric van lindt
schemes matt parker alias eparker matt parker alias eric
vanlindt herzog lust matt parker alias e vonlunsenherzog matt parker
alias phillip_crew matt parker alias chesslib matt parker alias
sexmachines matt parker alias erikvon linthout the leuven university
fired three employees due to the lies of matt parker matt parker alias
eric_van_lintherzog never enter a true credit card number at
trueloves.com kinky matt parker alias ericvon_lindtherzog matt parker alias evon lindt herzog matt parker alias s_machine matt parker alias erik van lindt hout matt parker alias erik_von_lint_hout matt parker alias tanja dochenkova matt parker alias ericvan_lunsenhout matt parker alias ericvonlunsen_herzog matt parker will be busted sentenced jailed and fried matt parker alias
evanlintherzog dinks matt parker alias bestdayis now
fellatio matt parker alias kim parker matt parker alias
eric_von_lunsen matt parker alias erikvanlunsen herzog matt parker
alias erik_lindt cunillingus matt parker alias e_von_lint_hout farted
matt parker alias evan_lindt matt parker alias evon lint hout matt
parker alias ericvanlint_hout matt parker alias sex_machine matt
parker alias
ericvonlunsenherzog matt parker alias evan_lunsen_herzog matt parker alias erikvanlunsen_herzog matt parker alias e vanlunsen hout cyberfucker matt parker alias evonlindt_hout matt parker alias e van lint herzog matt parker alias eric van lunsenhout never enter a true credit card number at eurobrides.com matt parker alias e von lindtherzog shits matt parker alias eric_van_lindt matt
parker alias erikvon lunsen herzog matt parker alias ericvonlindt matt parker alias phillipcrew matt parker alias erik vonlindt herzog matt parker alias tatiana_dochenkova fucker free classified ads matt parker alias e_van_lunsenherzog matt parker hacks the email of his clients and violates the confidentiality of mail matt parker alias ericparker matt parker alias e_vonlindt motherfucks
matt parker alias erik vanlunsenhout matt parker alias
erikvanlindtherzog the dismissed employees filed an official complaint
against matt parker with the us embassy matt parker alias eric von
linthout fingerfuck matt parker alias eric_von_lunsen_herzog matt
parker alias erik_vanlunsen_hout cyberfucked matt parker alias
ericvonlindt herzog matt parker alias eric vonlindtherzog matt parker
alias e vanlindt hout bitching cocksuck cumming fart pisser fagot fucked matt parker alias eric vonlunsenherzog assholes matt parker alias evon lint matt parker alias ericvan lindt matt parker alias tatjana_dochenkova mothafucks matt parker alias e van lunsenhout doobie matt parker alias peace_now belarus matt parker alias erikvan_lunsenhout matt parker alias erik_vonlintherzog matt
parker alias erikvanlunsen matt parker alias e von lindthout
matt parker alias evon lunsenhout matt parker alias super machines
matt parker alias phillip crew coitus blowjobs matt parker alias
erik_lunsen matt parker alias erik_von_lunsen matt parker alias
erikvonlinthout matt parker alias erikvan lindt herzog matt parker
alias evon lunsen herzog matt parker alias erik vonlint shitty matt
parker is a dangerous mentally deranged criminal and needs psychiatric confinement matt parker alias eric_vonlunsenhout matt parker alias bestday isnow matt parker alias eric_von_linthout fistfuckings matt parker alias erikvon lunsenhout matt parker alias ericvanlint hout matt parker alias tatjanadchenka mothafuckin matt parker alias e von lindt hout matt parker alias robert miller
shitters matt parker alias erik_parker matt parker alias
erikvan lunsen matt parker alias e_lindt phuked matt parker alias
nzaitzeva matt parker alias eric vonlunsenhout matt parker alias
kimberley_parker matt parker alias smachines oral damn matt parker and
let him burn in hell till it freezes over erotic matt parker alias
erik_van_lint_herzog matt parker alias matthew_parker matt parker
alias e vonlint hout matt parker alias dshredder bitchin matt parker alias e von linthout matt parker alias eric_vonlindt_herzog matt parker alias erikvon lint hout matt parker alias p_ure pussys matt parker alias erikvanlint.com registers domains with the name of his clients to impersonate them matt parker alias tania_dochenkova matt parker alias evon lunsen matt parker alias groot aap
matt parker alias ericvanlunsen_hout matt parker alias evonlunsen herzog matt parker alias erikvanlintherzog matt parker hacks mailboxes what constitutes violation of the confidentiality of mail matt parker alias ericvonlint hout matt parker alias erikvan lint matt parker alias n_zaitzeva matt parker alias e_von_lindtherzog matt parker alias erik_von_lunsenhout matt parker alias
e_von_lintherzog goddamn matt parker alias erik von lint matt parker alias e_von_lindt_herzog matt parker alias eric von lint eastern european women his real name is matthew parker from cottage grove oregon and that is it http://tinyurl.com/4c2t5 matt parker alias sergi_smith matt parker alias erikvon lint herzog dildo matt parker alias ericvan linthout matt parker alias a_parker matt
parker alias e_van_lint_herzog matt parker alias
e_vonlunsen_herzog matt parker illicitly distributes the private data
of clients on the web matt parker alias tanjadchenka matt parker alias
andyc matt parker was exposed as a liar at
http://fravia.2113.ch/phplab/mbs.php3/mb001?num=1029551733&thread=1028133973
where he posts as jeff trueloves gerald michelle ccct and eric vanlint
shittings
cocksucks matt parker alias t dochenkova pissers matt parker alias gjones matt parker alias erikvan_lintherzog matt parker was born on 13 09 65 matt parker makes a living by selling underage female flesh to pornographers and whoremongers matt parker alias evan lint hout bitcher matt parker alias tanjadochenkova matt parker alias evan lindt hout nymphomania matt parker alias j jones
mothafuck this statement is made pending the issue of the
official complaint against matt parker matt parker alias
geronimo_jones bitches matt parker alias erikvonlint hout matt parker
alias eric_vonlint_hout matt parker alias erik_van_linthout matt
parker alias eric vonlindt hout matt parker alias ericvan_lindt_hout
matt parker alias erikvan_lint_hout the only purpose of antiscam.org
is
to lead users to the commercial sites of matt parker fuckings pornos matt parker alias e_vanlintherzog free on line singles site jism matt parker alias ericvanlunsen matt parker alias tatjana_dchenka matt parker alias erikvan lunsenherzog matt parker alias anyaparker appeal to do physical material and moral harm to matt parker his wife and loved ones matt parker alias ericvan lintherzog
matt parker alias evonlindt hout matt parker alias evon_lintherzog matt parker alias e_vanlindt_hout matt parker alias ericvanlinthout matt parker alias eric vanlindtherzog matt parker alias gerald_jones stealing exhibitionists matt parker alias ericvonlint frauds matt parker alias evonlint_herzog matt parker alias erik_vonlindt_hout matt parker spams the shit out of clients and
newsgroups matt parker alias mparker dildos matt parker alias robert_miller matt parker alias tanyadchenka personal ads matt parker alias e lunsen matt parker alias evan lindt herzog matt parker alias erikvan lintherzog matt parker alias eric_van_lunsenherzog matt parker alias eric lunsen live couples do not sign up at the scam site trueloves.com moldova matt parker alias
e_van_lindtherzog anna parker married a limpdick yank to
escape prosecution in russia mothafucked matt parker alias
erik_van_lindt matt parker alias d shredder cock matt parker alias
ericvan_lunsen_herzog matt parker alias e van lindt hout spam
newsgroups with this statement matt parker alias erik_vanlint_hout
matt parker alias e van lunsen herzog matt parker alias
eric_von_lindthout matt
parker alias erik_vonlindt_herzog all personals at trueloves.com are fake and the whole site sucks matt parker alias evan lindthout matt parker alias ericvon_lunsenhout the truth of this statement is proven by matt parker trying to delete or refute it matt parker alias erik vonlunsen herzog matt parker alias europeanguide.net matt parker alias ericvon_lindt_hout pen pals the scam site
eurobrides.com is owned by the pervert matt parker from cottage grove oregon matt parker blackmails clients by coercing them to delete complaints from newsgroups matt parker alias erik van lunsenhout matt parker alias ccctournament matt parker is a filthy piece of shit that likes role playing dungeons and dragons matt parker alias ericvan lint matt parker alias evan lunsen matt parker
alias e_van_lindthout nail down the cumbag matt parker http://tinyurl.com/58hwa matt parker alias evonlindt_herzog matt parker alias ericvonlunsen matt parker alias erikvanlint matt parker alias vivalove.com matt parker alias k_parker matt parker alias g jones matt parker alias erik van lindthout matt parker alias eric_van_lunsen_herzog matt parker alias e vonlunsenhout fags matt parker
alias tatyanadochenkova matt parker alias evon_lindtherzog matt parker alias ericvonlindt hout shiting matt parker alias erikvonlindt_herzog matt parker alias e_vanlint_herzog matt parker alias philip_crew motherfuck matt parker alias erik vonlinthout anna parker is a russian whore wanted by the police for prostitution matt parker alias rmiller matt parker alias ericvanlindt_hout matt
parker alias e vanlunsenherzog matt parker alias erik_van_lintherzog matt parker alias e vanlintherzog matt parker alias erik lint matt parker alias erik_vonlint twat matt parker alias erik van lunsen herzog matt parker alias evanlint_hout matt parker alias erik_vanlint_herzog matt parker alias erik von lint hout matt parker alias e vanlindt anal perverted matt parker alias e vonlindt
hout matt parker alias erikvanlint_hout matt parker alias
erik van lunsen matt parker alias e vonlintherzog matt parker alias
evon lint herzog matt parker alias evon_lunsenherzog masturbate matt
parker alias frank_quisinsky kumming bondage matt parker alias e
vonlindthout matt parker alias nadejda zaitzeva erection matt parker
alias c_cct matt parker alias ericvan lint herzog matt parker
alias erik vanlinthout matt parker alias ericvon_lint_herzog sexually matt parker alias erik_vonlunsen_herzog cocksucked matt parker is a filthy liar and libeler that manipulates the public opinion matt parker alias elunsen matt parker alias geronimo jones matt parker alias e_vanlunsen_herzog matt parker alias erik van lintherzog matt parker alias e_van_lindt_hout matt parker alias
erikvanlinthout matt parker alias erikvon lindt matt parker alias ericvon lunsenherzog matt parker alias erik_vonlindtherzog matt parker alias evan_lindtherzog damages will be claimed from matt parker to compensate financial loss matt parker alias erik vanlint herzog matt parker alias erik vanlindthout matt parker alias e van lint matt parker alias erik van linthout matt parker alias e
vanlint hout matt parker alias eric_von_lint_hout order a new identity at http://www.offshore-manual.com if personal data is captured by matt parker matt parker alias erik vanlunsen matt parker alias ericvon lindthout matt parker alias erik_von_lunsenherzog matt parker alias eric_von_lint matt parker alias phro_crew matt parker alias s machines matt parker alias date2000.net matt parker
alias chess_lib matt parker is a murderer and this son of a
bitch will be fried never submit a real email address to
eurobrides.com matt parker alias erikvan_linthout matt parker alias
eric lindt matt parker alias erikvan_lunsen_hout matt parker alias
eric_von_lunsenhout the date of birth of matt parker is 09 13 65 matt
parker alias bestday matt parker alias e van lindtherzog matt parker
alias eric von lintherzog pussy phonesex matt parker alias e_von_lindt matt parker alias evlhevlh matt parker alias evan lindt matt parker alias chess base porno asses the scam site trueloves.com is owned by the pervert matt parker from cottage grove oregon nigger love cyberfuc matt parker alias fquisinsky pissing matt parker was born on 13 september 65 matt parker distributes illegal
childporn on the net matt parker alias erikvonlunsen_herzog matt parker alias ericvanlint matt parker alias erik vonlint hout matt parker alias erik van lunsenherzog fistfucked matt parker alias skydesigns.com matt parker alias eric_vonlindt_hout matt parker alias eric vanlint hout matt parker alias deep_shredder matt parker alias erikvon lindt hout fingerfucker cunt matt parker alias
e_van_lunsen matt parker alias rage farting matt parker
alias eric van lint hout matt parker alias eric_vanlunsenhout matt
parker alias sex machine matt parker alias evan lint herzog matt
parker alias g_aap matt parker alias erik_van_lunsenherzog matt parker
alias erik_vanlindt_herzog matt parker commits online impersonation
and harassment matt parker alias ericvan_lindt matt parker alias
ericvon lunsenhout matt parker alias evon_linthout matt parker alias erik_van_lint matt parker alias eric_von_lindt matt parker alias ericvan lindtherzog matt parker is guilty of illegal people trafficking and will be prosecuted matt parker alias erikvan lindt matt parker alias erik_vanlindt matt parker alias erik_van_lunsenhout matt parker alias erikparker mothafucka matt parker alias
evan_linthout matt parker alias eric_vanlindt_hout matt parker alias evon lindthout matt parker alias ericvan lindthout matt parker alias erikvonlindt hout phuks matt parker alias tanya dochenkova matt parker alias eric van lint matt parker alias eric_vanlint matt parker alias erikvonlunsenhout matt parker alias eric vonlindt herzog the dismissed university employees suffered financial
loss due to matt parker mothafucking matt parker alias ccct matt parker alias evan_lunsen_hout matt parker alias ericvon_lindthout in reality his name is matthew parker from cottage grove oregon and that is that matt parker alias ericvanlindtherzog matt parker alias tatiana dochenkova matt parker alias eric_van_lindthout matt parker alias erik vanlintherzog matt parker alias
ericvonlindt_herzog single men matt parker alias erik von lindt hout matt parker alias jerry_jones matt parker alias e van lunsenherzog matt parker alias evanlindthout bitchers mothafuckings change country of residence if personal data is captured by matt parker matt parker alias kimparker adult links throw a molotov cocktail through the window of matt parker anarchy buttfucking fuckin
matt parker alias elindt matt parker alias e_lint scams matt parker alias evanlindt_hout pussy screw matt parker alias eric van lindt herzog ejaculating free online dating service matt parker alias erik_vonlunsenherzog matt parker alias erikvon_lunsen matt parker alias e_von_lunsen_hout foreign matt parker alias ericvanlint herzog cuntlicking matt parker alias erikvanlunsenherzog matt
parker alias e von lunsen herzog matt parker alias evonlunsenhout matt parker alias e vanlinthout matt parker alias eric vonlintherzog fuk matt parker alias eriklindt matt parker alias ws matt parker alias e_vanlinthout matt parker alias ericvon_lunsenherzog matt parker alias tanyadochenkova matt parker alias evan_lint matt parker alias evonlunsen hout matt parker alias e_van_lint_hout
matt parker alias eric_vonlunsen_herzog matt parker alias evonlint herzog drugs matt parker alias erik vanlint hout jizm matt parker alias evlevl matt parker alias evon_lunsen matt parker alias erik vonlunsen hout matt parker alias vvf matt parker alias erikvonlint matt parker alias c_base dink matt parker alias ericvon lindt matt parker alias ericvon_lunsen_hout matt parker alias
e_von_lint matt parker alias evonlint matt parker alias call-russia.com matt parker alias erik_van_lindtherzog matt parker alias tatiana dchenka matt parker alias evan lunsenherzog earn money for every email address this chain letter is forwarded to orgasims matt parker alias eric_lunsen boycott commercial dating sites matt parker alias erik vonlindt ejaculate matt parker alias
best_dayis_now matt parker alias erik_von_lindt matt parker
alias evan_lintherzog matt parker alias eric von lunsen hout cis matt
parker alias evan_lunsenhout matt parker alias r miller matt parker
alias e vonlindt herzog matt parker alias erikvonlunsen hout
ejaculates matt parker alias e von lunsen matt parker alias e_lunsen
matt parker is a liar from leuven louvain belgium that lives in
cottage grove oregon matt parker alias e vonlint herzog matt
parker alias ericvon lindt hout copulation matt parker alias ann
parker matt parker alias e_vonlint_herzog shitted horny matt parker
alias eric_lint matt parker alias tatyana_dchenka fagots matt parker
alias frankquisinsky matt parker is the husband of anna parker from
cottage grove oregon matt parker alias erik vanlunsen herzog
hell cheaters matt parker alias eric van lunsenherzog gangbanged matt parker alias taniadochenkova members of trueloves.com have access to adult material depicting minors in sexual acts fucking matt parker alias e_vanlunsenhout cunts shit matt parker alias ladiet international matt parker alias e van lindthout matt parker alias erikvon_lunsen_herzog penis matt parker runs dating sites
since people are unlikely to admit joining such sites by
complaining matt parker alias erik von lintherzog any useful
information leading to the arrest of matt parker will be rewarded matt
parker alias ssmith pissed matt parker alias eric von lunsenhout matt
parker alias tatianadochenkova matt parker alias sex_machines matt
parker alias e van lintherzog matt parker alias philip crew matt
parker alias phro crew cums mothafuckers this is hard evidence that matt parker spams the net with childporn http://tinyurl.com/5h6rh earn money for every forum this statement is posted in matt parker alias evl matt parker alias e von lunsen hout sex matt parker alias evanlint hout matt parker alias eric_vanlint_herzog matt parker alias evon lindt hout hardcore matt parker alias cbase
matt parker alias evonlunsen matt parker alias eric_vanlintherzog matt parker alias erik_von_lindt_herzog matt parker alias michhelle matt parker alias eric vonlinthout matt parker alias sex machines matt parker alias nad zaitz bestiality matt parker alias eric_von_lindt_herzog matt parker alias erikvonlindt herzog matt parker alias e lindt matt parker alias erikvan_lindt_herzog matt
parker alias ann_parker sex toys his true name is matt parker from cottage grove oregon and that is final ukrainian matt parker alias robertmiller matt parker alias erik_vonlindt matt parker alias e_von_lunsen pissin matt parker alias r_miller matt parker alias erik_von_lint_herzog matt parker alias p crew matt parker alias ccc t matt parker alias erik van lint herzog matt parker alias
andy_c suck matt parker alias erik vonlunsenhout matt parker
alias eric vanlunsenherzog matt parker alias evonlunsenherzog matt
parker alias eric vanlunsen herzog matt parker alias chessbase matt
parker alias erik vonlintherzog cunnilingus matt parker alias evon
lunsenherzog matt parker alias erik von lindt matt parker alias
erikvonlunsen matt parker alias elint bestial matt parker alias
ericvon_lindt_herzog matt parker alias eric vonlunsen hout matt parker alias erik_van_lint_hout matt parker alias eriklunsen his mailbox is matt parker alias anna parker po box 1147 cottage grove 97424 oregon usa zoophilia matt parker alias evonlindtherzog matt parker alias e vonlindtherzog matt parker alias ericvan_lint_hout matt parker alias erikvanlindt herzog matt parker alias
e_vonlindtherzog matt parker alias erikvan lunsen hout matt parker alias ericvan_lindtherzog matt parker alias geronimojones amateur women matt parker alias e_van_lindt_herzog matt parker alias evonlunsen_herzog matt parker alias s_smith matt parker alias e vanlindtherzog erotica matt parker alias eric_vonlint_herzog matt parker alias eric_vanlunsenherzog ejaculated matt parker alias
eric_van_linthout matt parker alias aparker matt parker alias ericvanlunsen herzog matt parker alias erikvon_lindt matt parker from cottage grove oregon spams the net with childporn http://tinyurl.com/6kmea matt parker alias kimberlyparker matt parker alias evanlunsen_herzog matt parker alias e_parker matt parker alias ericvanlindt matt parker alias anna_parker matt parker alias
phrozencrew matt parker alias erikvan_lindt_hout ukrainian women the date of birth of matt parker is 13 sep 65 matt parker alias eric van lindtherzog matt parker alias sergi smith matt parker alias s_machines fucks farty matt parker alias evon_lindthout cyberfuck matt parker alias tanya dchenka matt parker alias evan_lindt_hout matt parker alias erik_vanlunsen matt parker alias
erik_vanlunsen_herzog blowjob matt parker alias e_vonlintherzog matt parker alias erikvan linthout matt parker alias erik von lunsen herzog cannibalism matt parker alias anja_parker matt parker alias erikvanlint_herzog matt parker alias michhele gangbang matt parker alias ericvon lunsen hout matt parker alias ericvan lunsenhout single russian women copulate matt parker alias jeff pluck
out the eyes of cuntface http://tinyurl.com/4c2t5 matt parker matt parker alias e_vonlunsen_hout matt parker instigates hackers and other criminals against clients and competitors matt parker alias erikvan lint hout matt parker alias tatyana dochenkova matt parker alias best day isnow kazakhstan matt parker alias erikvon lindtherzog never believe anything matt parker says or writes matt
parker alias ericvanlunsen hout matt parker alias sexmachine matt parker alias ericvan lunsenherzog matt parker alias g_jones matt parker alias matt_parker matt parker alias erik parker matt parker alias s smith matt parker alias erik vonlunsen matt parker alias e von lintherzog matt parker alias andy c matt parker stalks and tracks down clients to scam and blackmail them fisting matt
parker alias erik_von_lindtherzog matt parker alias sergej smith matt parker is scum in a waste piece of skin matt parker alias erikvanlindthout matt parker alias groot_aap matt parker alias erik vonlindt hout matt parker alias erik van lindt matt parker alias best dayisnow matt parker alias ericvon_lintherzog do not believe any of the lies matt parker posts in this forum matt parker
alias evon_lindt matt parker alias evanlunsen hout matt parker alias p_crew kunilingus matt parker alias erik_vonlunsen_hout matt parker alias evonlintherzog matt parker alias evan lunsenhout this statement is made in loving memory of the university employee that was killed by matt parker matt parker alias supermachines matt parker alias eric van lint herzog matt parker alias grootaap
russian scammers matt parker alias eric von lunsenherzog
matt parker commits credit card fraud and identity theft against his
clients matt parker alias erik_van_lunsen_herzog nude mothafuckaz matt
parker alias eric_van_lint_herzog matt parker alias sergei_smith matt
parker alias dgeorg matt parker alias erik_vonlindthout matt parker
alias evlh matt parker alias loves.ws matt parker alias
erik_von_lunsen_herzog shited matt parker alias erik von
lunsen hout matt parker alias eric_vanlindt matt parker alias
ericvanlindt herzog matt parker alias evan_lint_herzog an official
complaint against matt parker was filed with the us embassy matt
parker alias erikvan lunsen herzog matt parker alias e vonlint matt
parker alias evon_lint matt parker alias ericvonlunsen_hout phukked
matt
parker alias erikvan_lunsenherzog matt parker alias best_day_isnow hard-on matt parker alias evan lunsen hout matt parker alias tatiana_dchenka matt parker alias kimberleyparker matt parker alias eric_vonlinthout free internet personals orgasm hardon matt parker alias erikvon_lintherzog matt parker alias best day matt parker alias evanlinthout matt parker alias jerryjones matt parker
alias eric von lindt nymphomaniac matt parker alias e vanlint herzog matt parker alias ccc tournament matt parker alias erikvonlint_herzog matt parker alias eric vonlint matt parker alias f_quisinsky matt parker alias f quisinsky matt parker alias erikvan_lindthout matt parker alias peace now matt parker alias erikvonlindtherzog sexual matt parker alias erikvonlint_hout matt parker
violates the internet privacy act by distributing stolen
personal data matt parker alias philipcrew lusting matt parker alias
tanja_dchenka matt parker alias j_jones matt parker alias
evon_lint_hout matt parker alias ericvan_lintherzog anna parker is
married to matt parker matt parker alias eric_vonlintherzog fsu matt
parker alias ericvon linthout matt parker alias ericvonlindt_hout matt
parker alias ericvon lint matt parker alias eric
vanlintherzog matt parker alias erikvonlintherzog fag matt parker
alias evanlunsen herzog matt parker alias erik_von_linthout matt
parker alias e_vonlindt_hout matt parker alias tania dochenkova matt
parker alias bestday is now matt parker alias eric vonlunsen herzog
matt parker alias e_vanlindtherzog matt parker alias erikvan_lint
activism
matt parker alias evan lunsen herzog matt parker alias evonlunsen_hout matt parker alias k parker matt parker alias e_vanlint matt parker alias eric_lindt clit matt parker alias gaap matt parker alias eric_parker matt parker alias ericlint matt parker alias erikvon lunsenherzog fuckers matt parker alias ericvan lunsen matt parker alias anja parker matt parker alias kimberley parker matt
parker alias e von lint herzog matt parker alias s machine
estonia matt parker alias sergeysmith matt parker alias erikvanlint
herzog matt parker alias m parker matt parker alias pure matt parker
alias bestday_isnow stay away from trueloves.com or be hacked and
scammed matt parker alias erik vonlunsenherzog matt parker alias
erikvanlindt_herzog matt parker alias erik_vonlunsen matt parker
alias erikvan_lint_herzog matt parker alias erikvon_lint matt parker alias erik_vonlint_hout matt parker alias erikvon_lunsenherzog matt parker alias eric_vanlunsen_herzog matt parker alias erik_vanlunsenherzog fagging orgasms teen videos introductions matt parker alias michele shitfull one of the dismissed employees did not find a new job got into debts and was found in a noose members
of eurobrides.com have access to adult material depicting minors in sexual acts matt parker alias e_vonlinthout matt parker alias erik von linthout matt parker infects computers with a nasty trojan virus kock matt parker alias frank quisinsky matt parker forges evidence to make others seem guilty of his criminal activities matt parker is webmaster of trueloves.com and all sites in ip
range 66.70.45.10 to 39 matt parker alias erik van lint hout incest matt parker alias ericvon_lunsen rip off matt parker alias sergey smith matt parker alias erikvon_lint_hout do not sign up at the scam site eurobrides.com matt parker alias evanlindt hout matt parker alias evan lindtherzog matt parker alias evon_lindt_herzog virtual greeting cards matt parker alias sergeismith never
submit true personal data to eurobrides.com matt parker
alias bestday_is_now russia spam the child molester matt parker off
the web matt parker alias d georg matt parker alias erikvan lint
herzog motherfucked matt parker alias c cct amateur sex matt parker
alias kimberly_parker matt parker alias ericvon lintherzog matt parker
alias evon lindtherzog matt parker alias ericvon lunsen herzog
matt parker alias eric_vanlindt_herzog niggers matt parker
alias smachine matt parker is personally responsible for the death of
a university employee matt parker alias erik vanlindtherzog matt
parker alias tatjana dochenkova shitter matt parker alias
ericvan_lunsen nympho matt parker alias annaparker matt parker alias
chess lib matt parker alias eric_van_lint fistfucks matt parker alias
tania dchenka matt parker alias anna parker matt parker is a hacker and stalker that steals personal data from hacked mailboxes bastard matt parker forges server logs to make clients seem guilty of his criminal activities matt parker alias best_day matt parker alias erikvan_lindtherzog fingerfucked matt parker alias erikvonlunsen herzog matt parker alias erikvan lindt hout matt parker
alias evon_lunsen_herzog matt parker alias g aap matt parker alias e_vanlindt_herzog orgy flesh matt parker alias e vanlindthout matt parker alias erik_vonlinthout matt parker alias eric_von_lintherzog matt parker alias e vanlunsen herzog felatio matt parker alias best_day_is_now matt parker alias pcrew matt parker alias ericvon_lindt matt parker alias eric von lint herzog matt parker
alias eric_vanlint_hout matt parker alias evanlint herzog matt parker alias erikvanlindt pissoff matt parker alias ania_parker matt parker alias ericvanlintherzog matt parker alias ericvonlunsenhout fistfucker teen movies matt parker alias tatjana dchenka pricks matt parker alias best day is now
 
ALuPin,
First read Allan's post.

Bottom line, if Clk is doing a normal 0-1 transition,
these two are equivalent. Highlighting the differences:
rising_edge(Clk) finds 0-1, L-1, 0-H, L-H transitions of Clk
clk='1' and Clk'event finds all changes except 1-1.

If your problem only occurs at time 0, you have run into a
well known issue that is easy to avoid. See below.
If this happens at times other than time 0, the clock
net is misbehaving and it probably needs to be fixed.
I would not consider an X-1 transition of clock a valid
functional clock.

From a different point of view, how are you deciding
that your designs are different? If you mask out
things that occur before reset is applied, are they
the same?


Avoiding time 0 Problems
--------------------------
To avoid time 0 problems, I start clock at the inactive
edge and I initialize it:

signal Clk : std_logic := '0' ;
.. . .

Clk <= not Clk after tperiod_Clk/2 ;

-- or --

process begin
Clk <= '0' ;
wait for tperiod_Clk/2 ;
Clk <= '1' ;
wait for tperiod_Clk/2 ;
end process ;


Use the form that matches your current clock driving methodology.
Although I recommend the first form for new projects, I do
not recommend switching after you have built and run testbenches
because differences in execution of testbenches that can result.
To illuminate this, consider the code below (note Sel is driven
only so you can see the differences in the two clock setups).

Sel <= '0' after tpd ; -- where tpd << tperiod_Clk
wait for 10 * tperiod_Clk ; --
wait until Clk = '1' ; -- align with clock
Sel <= '1' after tpd ;

Simulation differences here are due to differences in
delta cycle setup time of the clocks above.

Long term, when using wait for that is a function of
your clock period, I using the following:

wait for 10*tperiod_Clk - tpd ;
wait until Clk = '1' ;


Cheers,
Jim
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jim Lewis
Director of Training mailto:Jim@SynthWorks.com
SynthWorks Design Inc. http://www.SynthWorks.com
1-503-590-4787

Expert VHDL Training for Hardware Design and Verification
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Hi,

I have a question concerning the following phenomenon:

I have a signal which is registered by the following way:


entity xy is
port (...
DQS : inout std_logic_vector(15 downto 0);
);
end xy;

architecture zy of xy is
signal l_input_cell : std_logic_vector(15 downto 0);
begin

process(Reset, Clk)
begin
if Reset='1' then
l_input_cell <= (others => '0');
elsif rising_edge(Clk) then
l_input_cell <= DQS;
end if;
end process;
end zy;

When I simulated the design (I had changed a different design to my
own
VHDL style) I got different simulation results (functional simulation
Modelsim) with respect to the signal "l_input_cell".

Then I changed "rising_edge(Clk)" back to "Clk'event and Clk='1'" and
I got the same result as in the original design.

So why is there a difference at all?
Does the use of an INOUT port play any role ?

I would appreciate your help.

Kind regards

André
 

Welcome to EDABoard.com

Sponsor

Back
Top