Login  Register

DMux

classic Classic list List threaded Threaded
3 messages Options Options
Embed post
Permalink
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

DMux

Yannsonnboys
2 posts
This post was updated on May 20, 2013; 12:15am.
This is what i find and it work  very good

CHIP DMux {
    IN C, D;
    OUT a, b;

    PARTS:
[ADMIN: Correct solution deleted. Please do not post solutions.]
}


Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: DMux

cadet1620
Administrator
2607 posts
Yannsonnboys wrote
This is what i find and it work  very good>

CHIP DMux {
    IN C, D;
    OUT a, b;
Note that you want to use the supplied prototype files without changing the interface so that they can be used in later projects. The interface to DMux should be
    IN  in, sel;

--Mark
Reply | Threaded
Open this post in threaded view
| More
Print post
Permalink

Re: DMux

Yannsonnboys
2 posts
This post was updated on May 20, 2013; 9:50am.
Yes Mark I know  I did not change the interface DMux. I just give some idea about the solution but people can just replace  like this
    C = in
    D = sel
and it will be work
 
--- Yannsonnboys ---