Dhaval Kaneria's Handy Stuff
Spread Knowledge..Keep Learning....Spread Smile...;)
Saturday, 30 May 2015
Android 6.0 (Marshmallow) features
›
After months of waiting, Google has finally announced that the next version of its mobile OS Android will be called Marshmallow. Also, i...
Saturday, 2 May 2015
verilog code for mejority detector
›
MEJORITY DETECTOR module majority ( input v1 , v2 , v3 , output reg m) ; always @( v1 or v2 or v3 ) begin if ((v1 & ...
verilog code for counter
›
COUNTER INCREMENT BY 2 module counter2 ( r , clk , y ) ; input r , clk ; output [ 3 : 0 ] y ; reg [ 3 : 0 ] y ; always @( posedge ...
verilog code for berral shifter
›
BERRAL SHIFTER module bshift ( input [ 7 : 0 ] a , input [ 2 : 0 ] sh , input left , right , output reg [ 7 : 0 ] b) ; always @(...
verilog code for 16x2 mux using 2x1
›
16x2 MUX USING 2X1 MUX USING STRUCTRAL MODELING module mux16to1 ( input [ 15 : 0 ] w , input [ 3 : 0 ] s , output wire [ 15 : 0 ] m , ...
verilog code for 4 -bit ripple carry adder using full adder
›
4 - BIT RIPPLE CARRY ADDER USING FULL ADDER module rip2 ( s , cout , a , b , cin ) ; input [ 3 : 0 ] a ; input [ 3 : ...
3 comments:
verilod code for n-bit binary to gray converter
›
- BIT BINARY TO GRAY CONVERTER module binary2gray # ( parameter n = 4 ) ( input [ n - 1 : 0 ] b , output [ n - 1 : 0 ] g ) ; as...
1 comment:
‹
›
Home
View web version