原创 A glimpse backwards

2015-1-22 18:19 1508 14 15 分类: 消费电子

An editor from another publication reached out to me for a prediction for this industry in 2015. What crazy, unexpected thing will happen?

 

I have no idea.

We do know there will be more. For less. More transistors, more functionality, more complex software and more design headaches. Engineering will continue to get more expensive while product costs go down.

In the 44 years since Intel launched the embedded industry, we’ve seen geometries go from 10,000 nm to 14 nm. 7 isn’t far away. To put this in perspective, a silicon atom is about 0.25 nm in diameter. When I started working with ICs the most complex parts had a few hundred transistors; most used just a dozen or two. Today it’s hard to even know what the numbers are. A complex CPU or FPGA might have five billion. Some memory parts appear to be twenty times that; Samsung’s V-NAND process is bringing true 3D parts to market today, though it’s really hard to get hard-hitting technical details.

The path forward is, as always, fuzzy and hard to imagine. Instead, let’s take a glimpse backwards to give some perspective to this relentless lunge into tomorrow.

The first commercially successful 8-bit microprocessor was Intel’s 8008. It was a terrible part requiring insane amounts of electronics to build a useful system. But compared to the expensive minicomputers of the day it was inexpensive and small.

With 3500 transistors the part took tens of microseconds to execute a single instruction. An 18-pin DIP package meant the address and data bus had to be multiplexed over the same pins; in fact, the 14-bit address itself had to be multiplexed over the eight pins shared with the databus.

Why a 14-bit address bus? I have no idea, but that was generally plenty since memory was expensive. The 1702 EPROM, the most common non-volatile memory in those days, could store a whopping 256 bytes. Alas, I can neither remember nor find the price of that part. About the same time my college had a Univac 1108 with 1 mega-word of core; the core box cost a cool million dollars, back when a megabuck was a lot of money. And when the 8008 came out core was still mainstream technology; till the mid-70s we were buying a lot of Nova minicomputers, all of which used core.

The 8008 user’s manual (http://www.classiccmp.org/8008/8008UM.pdf) has schematics for a computer based on that CPU. It sports 1 KB of RAM using 32 (!) 1101 SRAM chips. According to http://www.crescentmeadow.com/document_imaging/pdf/22045p.pdf those parts were about $256 in today’s dollars. That’s $8k for a single KB of RAM.

A typical board using the 8008 looked like this:
 

ganssle-fig-1-685-1-5-15.jpg


It took a lot of external parts to make a working computer using the 8008!

Note that this part was a CPU chip, not an MCU. No memory or I/O was included. Its $120 price – about $700 in today’s deflated dollars – was about what Intel still charges for their latest and greatest processors. But imagine the cost to build any sort of embedded system!

Despite the paucity of pins, three had to be dedicated to power (+5, -9, and ground) and two to a two-phase clock. That leaves only 13 for all other functionality. Compare that to the nearly thousand-pin (well, ball) packages used by a modern Pentium!

One was an interrupt input whose behavior was nothing short of odd. When the CPU recognized the interrupt it did not follow a vector. It merely issued another fetch cycle with status bits indicating this was an interrupt fetch. External logic had to jam an instruction onto the bus. It was up to the hardware designer to disable memory accesses during this fetch and gate the jammed instruction instead.

Most developers jammed an RST. Eight of these were one-byte calls to specific locations in low memory (RST0 went to 0000, RST1 to 0008, etc). Being calls, the stack preserved the system’s pre-interrupt PC, and being one-byte, the electronics required wasn’t too complex.

Interrupt response was measured in many tens of microseconds as an RST had to multiplex all of those writes and then fetch instructions at the destination address. We were building a system that had to take data from a spinning filter wheel. An encoder generated 1000 pulses per revolution of the wheel; I forget how fast it rotated, but it was pretty quick and low latency was critical to get the data at the right time. Things happened too fast for polling and the 8008 couldn’t even keep up with jammed RSTs. We hit on the idea of jumping to a halt instruction located just before the data-taking code. Then the interrupt jammed a NOP onto the bus, which was the fastest instruction available, and the system proceeded to take and process the A/D data before halting again.

Intel’s Intellec 8 was a development system filled with all of the boards needed to make a working computer. EPROMs contained the tool’s code, but to boot it one had initiate an interrupt with the clocks frozen, and then manually jam a JMP 0x0100 instruction into the front panel switches. 40+ years later, after having done this hundreds or thousands of times, I still remember that a JMP was 0x44.
 

ganssle-fig-2-539-1-5-15.jpg

The Intellec 8


The Intellec wasn’t a JTAG, BDM, or even ICE debugger. The motherboard had about a dozen connectors that carried all CPU bus signals around. We designed a board that plugged into one of these slots, which connected to a similar board plugged into the bus of our system. To develop code we’d pull the CPU board out of our system and use the Intellec as a replacement. A model 33 TTY was the console, and a crude debugger let us set breakpoints and the like. It took three days to reassemble the program, so we’d patch machine instructions into the code to fix bugs.

The 8008 had a seven level deep hardware stack. Push or call too much and the next pop or return would give unexpected results. Stack overflows that caused the code to return to random places were common and frustratingly hard to troubleshoot.

Today we marvel that a 32-bit MCU with plenty of memory and I/O can be had for a half buck or less, so the 8008 seems like laughable technology at astronomical prices. But it, and its predecessor the 4004, ushered in the world of embedded systems.

What will the next 44 years look like? The answer is unknowable. Moore’s Law looks likely to survive for quite some time. The aforementioned V-NAND technology, Xilinix’s 2.5 D approach, and other ideas may help Moore scale to more than two dimensions.

I suspect the future will be a world of technology that would leave us breathless. It’s likely that the technology will exceed our ability to grapple with associated cultural and moral issues; the ensuing decades could be full of fascinating debates about balancing the human and mechanical world. Or not; we may careen into the future with blinders on.

Like H.G Well’s Time Traveler, given the choice to catch a glimpse of the future vs the past, I’d happily chose the former.

文章评论1条评论)

登录后参与讨论

用户1406868 2015-1-28 11:25

Hello Jack,

Long time ago I started my career with Intel  MDS800,  Blue Box, then it turned ivory colour with Multiple processors ( Series-V ), then came ICE and I2ICE and iLTA and so on.  8 bit to 32 bit and ..... journey continues.

Thank you! You broght back memories. 

Past was glorious, but the future will be Fantatistic

Regards,

Subhash

相关推荐阅读
用户3671694 2016-04-18 17:49
What would you change about C?
If you’re an old-timer you’ve most likely written code in a large number of languages that have ma...
用户3671694 2016-04-18 17:33
A look at a new embedded heap manager
Many of us don’t give much thought about the math our compilers do. Toss off a call to a sine func...
用户3671694 2016-04-15 17:12
Why names are critical
The Linux printk function has various logging levels, which include KERN_EMERG, KERN_ERR and other...
用户3671694 2016-03-14 19:02
What do you think of ultra-low power watchdogs?
I have written extensively about designing ultra-low power systems that operate from coin cells. U...
用户3671694 2016-02-26 21:58
Comment headers: The best and the worst
I read a great deal of code. The vast majority is in C with some C++ and a bit of assembly sprinkl...
用户3671694 2016-02-12 17:58
What's your take on knobs?
In a recent Embedded Muse Richard Wall reviews the latest version of Digilent’s Analog Discovery U...
我要评论
1
14
关闭 站长推荐上一条 /2 下一条