Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Technology Blogs  >  VLSI WORLD technology Blog  > 

2013-02-27 18:02
1. Write a verilog code to swap contents of two registers with and without a temporary register?    With temp reg ;always @ (posedge clock)begintemp=b;b=a;a=temp;endWithout te… Read More
2013-02-27 17:41
Digital Design Interview Questions 1. Design a Transmission Gate based XOR. Now, how do you convert it to XNOR? (Without inverting the output) 2. Design a divide-by-3 sequential circuit with… Read More
2012-06-12 06:53
For most applications, a single interpreter and subroutines are quite sufficient. However, if you are building a client-server system (for example) you may need to have several interpreters… Read More
2012-06-12 06:52
The clock command provides access to the time and date functions in Tcl. Depending on the subcommands invoked, it can acquire the current time, or convert between different represe… Read More
2012-06-12 06:51
The simplest method of making a script run faster is to buy a faster processor. Unfortunately, this isn't always an option. You may need to optimize your script to run faster. This is diffic… Read More
2012-06-12 06:50
When you are debugging Tcl code, sometimes it's useful to be able to trace either the execution of the code, or simply inspect the state of a variable when various things happen to it. The&n&hell…Read More
2012-06-12 06:47
One difference between Tcl and most other compilers is that Tcl will allow an executing program to create new commands and execute them while running.A tcl command is defined as a list of st… Read More
2012-06-12 06:45
The source command will load a file and execute it. This allows a program to be broken up into multiple files, with each file defining procedures and variables for a particular are… Read More
2012-06-12 06:45
The info command includes a set of subcommands that will provide all the info you could want about a proc. These subcommands will return the body of a proc, the arguments to the pr… Read More
2012-06-12 06:44
There are a number of subcommands to the info command that provide information about the current state of the interpreter. These commands provide access to information like the cur… Read More
2012-06-12 06:41
Tcl provides several methods to read from and write to files on disk. The simplest methods to access a file are viagets and puts. When there is a lot of data to be read, however, i… Read More
2012-06-12 06:41
Tcl arrays are collections of variables, rather than values. This has advantages in some situations (e.g., you can use variable traces on them), but also has a number of drawbacks:They canno… Read More

Share the post

VLSI WORLD

×

Subscribe to Vlsi World

Get updates delivered right to your inbox!

Thank you for your subscription

×