Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] How does one read iccr expression tables

Status
Not open for further replies.

beeflobill

Member level 3
Joined
Jun 6, 2012
Messages
61
Helped
8
Reputation
18
Reaction score
7
Trophy points
1,288
Activity points
1,872
I'm trying to read the expression tables given to my by iccr, but I do not see what I would expect from a Boolean table. I'm even confused by the tables in the ICC User Guide.

For example, the documentation had this table for the equation b & (c | d)

Code:
  b  & (c | d)
<1>    <2> <3>

hit  |  rval  |  <1> <2> <3>
----------------------------
  1  |    1   |   1    -    1
  1  |    1   |   1    1    1
  0  |    0   |   -    0    0
  1  |    0   |   0    -    -
I would expect to see 8 rows from a typical Boolean table in this case. How do they get away with 4, and what do the dashes mean?
 
Last edited:

"-" means don't care, or to say the value could be either 0 or 1. the table in your case covers all 8 possible combinations.

I'm trying to read the expression tables given to my by iccr, but I do not see what I would expect from a Boolean table. I'm even confused by the tables in the ICC User Guide.

For example, the documentation had this table for the equation b & (c | d)

Code:
  b  & (c | d)
<1>    <2> <3>

hit  |  rval  |  <1> <2> <3>
----------------------------
  1  |    1   |   1    -    1
  1  |    1   |   1    1    1
  0  |    0   |   -    0    0
  1  |    0   |   0    -    -
I would expect to see 8 rows in a typical Boolean table. How do they get away with 4, and what do the dashes mean?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top