Complaining? What's your issue? The previous post had the APPLICABLE CODE
from the discussion thread.
If you need the whole thing instead of just the line that was a problem,
look it up with groups.google.com.
There ARE complaints here when too much is included from the previous post
in the discussion thread. There are some archivers of this newsgroup who
prefer to keep the sizes reasonable. There are many ways to find the
information in the previous posts in the thread. Personally, I use a
threaded newsreader (grouped by discussion) and most newsgroup readers allow
tracing back up the discussion tree.
The original poster was doing 64-bit compares while only using the bottom 17
bits as "significant" where sig_ans apparantly can be negative. The post
you "complain" about that has no arithmatic comparator DOES an arithmatic
comparison, it just doesn't LOOK like it becuase I was showing the original
poster how to change the 64-bit compare.
Oh - and I'm top posting. Problem?
"johnp" <
[email protected]> wrote in message
news:
[email protected] oups.com...
> How about
>
> wire sig_ans_top0 = sig_ans[62:17] != 47'h0; // or piped-equivalent
>
> if( sig_dn | ~sig_ans[63] & (sig_ans_top | (sig_ans[17] &
> |sig_ans[16:0]) )
>
> No arithmetic comparison, so no arithmetic comparitor inferred.
>
> PUT THE ORIGINAL CODE IN AS A COMMENT so that the next person
> that looks at it can understand what you're doing!
>
>
> John Providenza