how can i

This should get you started...

| IF
|----] [------------( THEN )
|
| THEN
|----]/[------------( ELSE )


.
Maybe?... :confused:

beerchug

-Eric
 
This is one common IF-THEN-ELSE construction: 

I:4 O:5
--] [---------( )--

which translates as:

IF I:4 = 1 THEN
LET O:5 = 1
ELSE O:5 = 0

but I'll bet you need to be more specific with your question.

 
On second thought...

Eric Nelson said:

| IF
|----] [------------( THEN )
|
| THEN
|----]/[------------( ELSE )


Around here, we preach not to use 'outputs' as internal bits, so here's a 'correction'... :rolleyes:

| IF
|----] [------------( THEN )
|
| IF
|----]/[------------( ELSE )


.
beerchug

-Eric
 
Back
Top Bottom