Showing posts with label code. Show all posts
Showing posts with label code. Show all posts

Davinci code

| 0 comments |
Davinci code, game jar, multiplayer jar, multiplayer java game, Free download, free java, free game, download java, download game, download jar, download, java game, java jar, java software, game mobile, game phone, games jar, game, mobile phone, mobile jar, mobile software, mobile, phone jar, phone software, phones, jar platform, jar software, software, platform software, download java game, download platform java game, jar mobile phone, jar phone mobile, jar software platform platform

Puzzle game that can make your brain more nimble, maybe this game you are looking for. Game jar full of challenges and for the size of 240x320 on the lcd screen of your phone. This game has a jar file that can directly be applied on mobile phone java format. Or maybe you mean to search for games jar with 176x220 lcd size, can be found here for free view. Download the game for free, and winning to go to the next level in this game davinci code jar. free for mobile Java.

Filetype: Davinci code. zip
Filesize: 384.5 KB
Platforms: Java (J2ME) jar

Download here

240x320
Read More..

2 to 1 multiplexer verilog code using conditional operator Verilog tutorial

| 0 comments |
This verilog tutorial shows how a 2 to 1 multiplexer can be designed in verilog using conditional operator"?". This way of implementing a circuit in verilog is called behavioral modelling. A multiplexer can also be modelled using strucural modelling which was illustrated in earlier blog post 2 to 1 multiplexer Verilog Code


Verilog code for 2 to 1 multiplexer using Conditional Operator

module mux2x1(a, b, sel, z);
    input a, b, sel;
    output z;
   
    assign z = sel? a:b;
   
endmodule

The input to the multiplexer is a and b. sel is the selector signal and z is the output. assign statement is used to assign input a or b to output z according to value of sel signal.

If sel is logic 0 then z = b and if sel is logic 1 then z = a.


Compilation and Simulation Result:

The code was compiled and simulated using verilog Software and the simulation trace is shown below:



Related Simulation:

See also VHDL code for the 2 to 1 multiplexer:

VHDL code for 2 to 1 multiplexer using when, select, if, case statements and structural model

Read also 2 to 1 multiplexer simulation in Proteus Professional:

4x1 and 2x1 multiplexer circuit simulation
Read More..