What is the difference between CPU and Microprocessor?

link|improve this question
CPU vs. MCU en.wikipedia.org/wiki/Microcontroller – Aki Jan 10 '11 at 17:26
1  
@Aki: An MCU is a different thing entirely. – Linker3000 Jan 10 '11 at 19:13
feedback

migrated from stackoverflow.com Jan 10 '11 at 16:48

This question came from our site for professional and enthusiast programmers.

8 Answers

A microprocessor is essentially a processor that happens to be on a chip (or a small number of chips), as opposed to one made from a large number of individual components.

As foo says, properly CPU refers to the main processor(s) of a system, though most of the time we call any processor that is typically used in this way a CPU. For example, we might refer to the Z80 processor in a Sega Mega Drive/Genesis as a CPU even though it actually serves as an auxiliary to the main processor, which is a more powerful Motorola 68k. (I believe the Z80 is often used to control the music and sound effects, though there is no reason why it would have to be used at all in a particular game.)

For an example of a CPU that is not a microprocessor, take a look at this 4-bit CPU:

enter image description here

link|improve this answer
1  
+1 nailed the main differentiation in the first paragraph. – Linker3000 Jan 10 '11 at 19:15
1  
+1 for the first paragraph, and for the 4-bit-CPU counter-example – foo Jan 22 '11 at 5:45
feedback

In everyday use: nothing, just the name.

If you want to be correct: a CPU is the "main" microprocessor, if you have several combined - the one that controls the others. Hence, Central Processing Unit.

link|improve this answer
feedback

A CPU ("central processing unit") is the core of a computer or a microprocesso, typically containing a "arithmetic/logical unit (ALU)" that does the computational work, an instruction fetcher, decoder and executer.

A microprocessor is a packaged electronic component containing a CPU, I/O, and memory access circuits.

link|improve this answer
feedback

In general I would say they're the same thing in casual conversation, but if you wanted to be pedantic, a CPU would probably be considered a specific type of microprocessor.

link|improve this answer
feedback

Processor is a part of computer that interprets(executes) instructions and the microprocessor is a CPU just on one Chip.

link|improve this answer
feedback

In order to me they are synonims, you can exchange the use even in technical discussions

link|improve this answer
feedback

The term microprocessor is larger than CPU. Microprocessor includes more stuff than just CPU.

link|improve this answer
feedback

microprocessor is small device .arithmatic unite and control unite same ebut memory is secound part

cpu is three part one is arithmatic unite secount one is control unite add thard one is memory

link|improve this answer
feedback

Your Answer

 
or
required, but never shown