Electronic Projects, forums and more.

Go Back   Electronic Circuits Projects Diagrams Free > Electronics Forums > General Electronics Chat


General Electronics Chat This forum is for general chat about electronics, eg: Dont know what a part does? Dont know how to read a circuit? Want to get an opinion?

Reply
 
LinkBack Thread Tools Display Modes
Old 9th March 2008, 06:29 AM   (permalink)
Default 8088 microprocessor

Does anyone know of a supplier of 8088 microprocessors? I have acquired a book called 'The 8088 Project Book,' by Robert Grossblatt and would like to work my way through it. However, after about an hour searching I couldn't find any suppliers online. Is the 8088 even produced anymore?
oomchu is offline  
Old 9th March 2008, 07:51 AM   (permalink)
Default

They stopped producing them in 1982. You're slightly out of luck.
__________________
What is a joule per second?
erosennin is offline  
Old 9th March 2008, 10:32 AM   (permalink)
Default

Old cpus such as the 8088 are sometimes sold on ebay as "collectables".

You may be able to get one there but you would not know if it still works.
picasm is offline  
Old 9th March 2008, 01:34 PM   (permalink)
Default

Hands up, every body who has thrown old boards away with 8088's on board!.

Really, unless you're wanting to build an old computer, micro-controllers are the way to go, check out PIC's or AVR's.
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Old 9th March 2008, 05:57 PM   (permalink)
Default

as performance which is faster? an 8088 or a PIC 16F628?
whiz115 is offline  
Old 9th March 2008, 06:00 PM   (permalink)
Cool

Quote:
Originally Posted by whiz115
as performance which is faster? an 8088 or a PIC 16F628?
Different beasts, one's a microcomputer the other a microcontroller. The PIC is 5MIPs @ 20MHz
__________________
Bill
Smart Kits build Smart People

http://www.blueroomelectronics.com
blueroomelectronics is offline  
Old 9th March 2008, 07:05 PM   (permalink)
Default

You can get a cmos version. I would however have to agree that a microcontroller is a lot easier to use.

http://futurlec.com/80Series/8088.shtml
Daniek is offline  
Old 9th March 2008, 07:28 PM   (permalink)
Default

Quote:
Originally Posted by whiz115
as performance which is faster? an 8088 or a PIC 16F628?
Faster doing what? - at 200nS per instruction a PIC is really VERY, VERY fast, and for many operations will beat an 8088 by a considerable margin (or any processors from that era).
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Old 9th March 2008, 07:34 PM   (permalink)
Default

I am not sure if its any easier to get a hold of but the Z80 was modeled after the 8088 and contains the 78 - 8088 opcodes as a subset to it's language.

Antney
aperri is offline  
Old 9th March 2008, 08:58 PM   (permalink)
Default

Quote:
Originally Posted by blueroomelectronics
Different beasts, one's a microcomputer the other a microcontroller. The PIC is 5MIPs @ 20MHz
I speak about processing power... i think 16F628 is way to powerful than
an 8088 processor, maybe 16F628 is comparable with a 80386/16MHz
whiz115 is offline  
Old 9th March 2008, 10:52 PM   (permalink)
Default

I have designed with the first PICS back in the very early 1990s and at the same time the 808x derivatives. I am puzzled that anyone would want to still use the 8088, because it has zero peripherals. It requires external RAM/EPROM as well. All of these things are included inside the PIC. If you want to really use the 8088, NEC made the V20, which is a clone. Also, Intel made the 80188, which is an 8088 core, with I/O ports on chip, but you still need external RAM/EPROM.

So may I suggest using the PIC, or maybe even a 68HC11/HC12 from Morotola. If you still want to use the 8088, post reasons why, and I would be glad to help.
__________________
"Everything that is done in the world is done by hope." -Martin Luther
"There are two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle."-Albert Einstein
Analog is offline  
Old 10th March 2008, 12:02 PM   (permalink)
Default

Quote:
Originally Posted by whiz115
I speak about processing power... i think 16F628 is way to powerful than
an 8088 processor, maybe 16F628 is comparable with a 80386/16MHz
An 80386 is way more powerful than most MCUs, most instructions execute in one clock cycle, so a 16MHz chip can acheive 16MIPS, it has hardware divide and multiply instructions, indexing registers and can address up to 4GB of memory. Try writing a PIC program to do a signed divide a 64-bit ingeter by a 32-bit integer and get both the quotent and remainder. The 386 can do it in one instruction which takes less than 43 cycles. I wouldn't like to think about how long a PIC would take.

Even an 8086 is more powerful that the baseline PICs.

Disclaimer, I know a lot more about the 80386 than any PIC.
__________________
I also post at the following sites:
http://www.stop-microsoft.org http://www.heated-debates.com
Screen name: Aloone_Jonez
Hero999 is offline  
Old 10th March 2008, 12:15 PM   (permalink)
Default

Quote:
Originally Posted by Hero999
An 80386 is way more powerful than most MCUs, most instructions execute in one clock cycle, so a 16MHz chip can acheive 16MIPS, it has hardware divide and multiply instructions, indexing registers and can address up to 4GB of memory. Try writing a PIC program to do a signed divide a 64-bit ingeter by a 32-bit integer and get both the quotent and remainder. The 386 can do it in one instruction which takes less than 43 cycles. I wouldn't like to think about how long a PIC would take.

Even an 8086 is more powerful that the baseline PICs.

Disclaimer, I know a lot more about the 80386 than any PIC.
You're picking (no joke intended) things that an 80386 is good at, and a PIC is bad at - try changing a single bit on an output port - a 20MHz PIC can do it in 200nS.

I wasn't aware that a 386 (or any CISC Intel processor) executed most instructions in a single clock cycle?, and I'm pretty sure an 8088 didn't. Certainly the faster replacement, the Z80, didn't - a 6502 running at 1MHz was about the same speed as a Z80 running at 8MHz.

Just done a quick google, as I thought, neither the 386 or 8088 do many (any at all?) single clock cycle instructions, with AAM taking 83 clock cycles on an 8088 and 17 on a 386. I'm pretty sure that an 8088 doesn't run instruction cycles at the external clock speed as well.

Check out http://www.clubinfolongueuil.qc.ca/p...20Pentium).htm
__________________
PIC programmer software, and PIC Tutorials at:
http://www.winpicprog.co.uk
Nigel Goodwin is offline  
Old 10th March 2008, 01:10 PM   (permalink)
Default

Quote:
Originally Posted by Nigel Goodwin
I wasn't aware that a 386 (or any CISC Intel processor) executed most instructions in a single clock cycle?
Sorry I was wrong about that, the 386 takes two clock cycles to execute most basic register to register instructions and a 486 takes one cycle.

This is all pretty old since even a modern single core CPU is pipelined and can sometimes execute more than once instruction at the same time.

CPUs tend to be better at number crunching, and I suppose MCUs are better at controling external hardware, which what they're designed to do.
__________________
I also post at the following sites:
http://www.stop-microsoft.org http://www.heated-debates.com
Screen name: Aloone_Jonez
Hero999 is offline  
Old 10th March 2008, 01:29 PM   (permalink)
Default

Well...recently i did my first steps on uCs and i think it's reasonable not to know or understand many things on them (btw like them very much! )

So... blueroomelectronics said that the PIC is 5MIPs @ 20MHz.
An Intel 386DX has 8.5 MIPS at 25 MHz (0.34 MIPS/MHz) Hero999 where did you got 16MIPS for a 386/16MHz?

Although it seems that my initial question was wrong, because it is supposed that we can't compare different cpu architecture performance by their MIPS results, what i really wanted to do is to find is a measurement point which could help me understand how fast a PIC is comparable to a Personal Computer which i am more familiar.
whiz115 is offline  
Reply

Bookmarks

Thread Tools
Display Modes



Similar Threads
Title Starter Forum Replies Latest
Motorola 68000 Microprocessor km General Electronics Chat 7 17th May 2005 09:01 PM
8086 and 8088 mstechca General Electronics Chat 8 20th April 2005 12:49 AM
Microprocessor control of a 12Vdc motor ptewright Electronic Projects Design/Ideas/Reviews 7 4th May 2004 06:59 AM
simple projects with 6802/00 microprocessor.. janenaive Electronic Projects Design/Ideas/Reviews 0 13th January 2004 10:48 AM
8088 sigma General Electronics Chat 9 21st March 2003 06:29 PM



All times are GMT. The time now is 07:07 AM.


Electronic Circuits  |  Learning Electronics
Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

eXTReMe Tracker