Dhaval Kaneria's Handy Stuff
Spread Knowledge..Keep Learning....Spread Smile...;)
Wednesday, 24 June 2015
Install Qt 5.4 in Ubuntu 14.04
›
First you need to download according to your OS version(32 bit or 64-bit). Download link is below.. https://www.qt.io/dow...
1 comment:
Wednesday, 10 June 2015
Apple's iOS 9 Features
›
1. Siri goes proactive One of the major overhauls in iOS 9 can be found with Siri. The digital voice assistant has received a colour...
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 , ...
‹
›
Home
View web version