ALL IN ONE

24 July 2007

VLSI (Very Large Scale Integration)

1. VLSI: Very-large-scale integration (VLSI) is the process of creating integrated circuits by combining thousands of transistor-based circuits into a single chip. VLSI began in the 1970s when complex semiconductor and communication technologies were being developed. The microprocessor is a VLSI device. The term is no longer as common as it once was, as chips have increased in complexity into the hundreds of millions of transistors. The links below are useful to know more about VLSI design.

VLSI System Design Lecture Slides
VLSI Circuit Design Lecture Slides

Microelectronic Devices and circuits Lecture notes
CAD for VLSI

2. ASIC ( Application Specific Integrated Circuit): A Chip that is customized for a particular use, rather than intended for general-purpose use such as a microprocessor. The use of ASICs improve performance over general-purpose CPUs, because ASICs are "hardwired" to do a specific job and do not incur the overhead of fetching and interpreting stored instructions. However, a standard cell ASIC may include one or more microprocessor cores and embedded software, in which case, it may be referred to as a "system on a chip" (SoC).

A full custom ASIC chip is the most costly, and like standard cell ASICs, use a custom-designed mask for every layer in the chip. Unlike standard cells, designers of a full custom device have total control over the size of every transistor forming every logic gate, so they can "fine tune" each gate for optimum performance. Thus, a full custom ASIC performs electronic operations as fast as it is possible to do so, providing that the circuit design is efficiently architected.

To know more visit the link below.

ASIC Design Flow Tutorial
Analog Design - For Analog design visit this site

3. Verilog: Verilog is a hardware description language (HDL) used to model electronic systems. The language (sometimes called Verilog HDL) supports the design, verification, and implementation of analog, digital, and mixed-signal circuits at various levels of abstraction.

The designers of Verilog wanted a language with syntax similar to the C programming language so that it would be familiar to engineers and readily accepted. The language is case-sensitive, has a preprocessor like C, and the major control flow keywords, such as "if" and "while", are similar. The formatting mechanism in the printing routines and language operators and their precedence are also similar.

The link below has tutorial for verilog. Go through it to gain some knowledge on verilog programming.

Verilog Tutorial

4. SystemVerilog is a combined Hardware Description Language and Hardware Verification Language based on extensions to Verilog. The link below consists of tutorials for learning SystemVerilog.

SystemVerilog Tutorial

5. SystemC is often thought of as a hardware description language like VHDL and Verilog, but is more aptly described as a system description language, since it exhibits its real power during transaction-level modeling and behavioral modeling. SystemC is a set of library routines and macros implemented in C++, which makes it possible to simulate concurrent processes, each described by ordinary C++ syntax. The link below has tutorials for learning SystemC.

SystemC Tutorial

6. Specman: It is an EDA tool for functional verification of digital system / integrated circuit design, usually in RTL. Verification engineers implement verification environments using e, the first commercial Aspect-oriented programming language. e is currently a proprietary language of Cadence. Specman was originally created by Verisity, which has since been bought by Cadence.
Below are the tutorial links for learning Specman.
Specman Tutorial
Specman Verification

12 July 2007

Mobile Phones

1. Cell Phone: A mobile telephone or cellular telephone (commonly, "mobile phone" or "cell phone") is a long-range, portable electronic device used for mobile communication. In addition to the standard voice function of a telephone, current mobile phones can support many additional services such as SMS for text messaging, email, packet switching for access to the Internet, and MMS for sending and receiving photos and video.


To know how cell phones work, visit the link below which gives a complete tutorial on the working principle of cell phones.

How Cell Phone Works

2. Cell Phone Virus: A mobile virus is an electronic virus that targets cell phones or wireless-enabled PDAs.

As wireless phone and PDA networks become more numerous and more complex, it has become more difficult to secure them against electronic attacks in the form of viruses or other malicious software (also known as malware). Visit the links below to know how cell phone virus works and how to protect them against virus.

How Cell Phone Virus Works
Cell Phone Security

3. For those who are buying a new mobile go through the links below for latest prices and reviews.

Cell Phone Reviews
Latest Cell Phone Updates
Mobile Shopping
Cell Phone World
Cell Phone Prices and Ratings

7 July 2007

Linux World

1. LINUX is a Unix-like computer operating system. Linux is one of the most prominent examples of free software and open source development; its underlying source code can be modified, used, and redistributed by anyone, freely. To know everything about linux visit the links below.

Why Linux
Everything about LINUX
Linux News

2. Linux Distribution (Distro): A Linux distribution, often simply distribution or distro, is a member of the Linux family of Unix-like operating systems comprising the Linux kernel, the non-kernel parts of the GNU operating system, and assorted other software. Linux distributions take a variety of forms, from fully-featured desktop and server operating systems to minimal environments (typically for use in embedded systems, or for booting from a floppy). There are currently over three hundred Linux distribution projects in active development, constantly revising and improving their respective distributions. To know about the ranking of distros and their performance visit the site below. It has a list of all the distros available and you can also download the distros of your choice from this site. It also has the ranking for the linux versions available.

Linux Distros

3. Unix/Linux Commands: A Command Line Interface or CLI is a method of interacting with an operating system or software using a command line interpreter. This command line interpreter may be a text terminal, terminal emulator, or remote shell client such as PuTTY.
The links below have a complete unix/linux commands with examples.

Unix/Linux Commands
Unix Toolbox - Collection of Unix/Linux/BSD/Solaris commands and tasks which are useful for IT work or for advanced users
Unix Practical - Practice unix without even installing it. Check out this cool feature.
Linux Commands ( A to Z)
Unix Course Online

4. Debian/Ubuntu :

Audio Converter - Perl Audio converter for converting multiple audio types.
Multimedia Encoders/Decoders - Visit this link for multimedia encoders/decoders.

5. Migration towards Ext4 file system:

Ext4 is a new file system in development, which is going to replace the current Ext3 file system in use in Linux now. For more details read the below article on Ext4 file system.

Ext4 File system

6. GDB Debugger:

GDB, the GNU Project debugger, is a very good debugging tool which allows you to see what is going on inside another program while it executes or what another program was doing at the moment it crashed.

It is a very nice tool which helps to find out where exactly the code crashed. This tool comes with all linux operating systems and is useful for debugging the C/C++ codes executed using the gcc compiler.

GDB can do four main kinds of things (plus other things in support of these) to help you catch bugs in the act:

  • Start your program, specifying anything that might affect its behavior.
  • Make your program stop on specified conditions.
  • Examine what has happened, when your program has stopped.
  • Change things in your program, so you can experiment with correcting the effects of one bug and go on to learn about another.
The program being debugged can be written in Ada, C, C++, Objective-C, Pascal (and many other languages). Those programs might be executing on the same machine as GDB (native) or on another machine (remote). GDB can run on most popular UNIX and Microsoft Windows variants.

For more information on how to use the gdb debugger go through the link below. Here one can find a step by step explanation of using the debugger tool. May be this can help you understand it better.

GDB Debugger Tutorial

Custom Search