The Wayback Machine - https://web.archive.org/web/20110122235215/http://www.vintage-computer.com:80/kenbak-1.shtml
Marketplace Forum VC Wiki Links Systems Publications Info History Events News Home

Kenbak-1 Computer

Description
Manufacturer Kenbak Corporation
Model Kenbak-1
Date Announced 1971
Date Canceled 1971
Number Produced Most estimates indicate around 40
Country of Origin USA
Price $750
Current Value At least $5,000.
Specifications
Processor None! This machine pre-dates microprocessors and was implemented with TTL logic.
Speed The equivalent of about 1 MHz
RAM 256 Bytes
ROM None
Storage None
Expansion None
Bus None
Video None
I/O None
OS Options None
Notes The Kenbak-1 was developed by John Blankenbaker in 1971 and sold from a small ad in the pages of Scientific American. Various sources consider the Kenbak to be the first true "Personal Computer."
Related Items in Collection None at the moment. the First Computermuseum of Nova Scotia has what must be the worlds largest collection of these very rare machines and has provided documentation on CD.
Related Items Wanted Printed documentation and anything else that's out there including old copies of Scientific American with Kenbak ads.


The Kenbak-1 is considered by many to be the world's first "Personal Computer." The Computer History Museum granted it this designation when they were still located in Boston in 1986. More specifically, the machine represents the first commercially available Von Neumann (stored program) computing device intended and priced for personal use.

John V. Blankenbaker designed the Kenbak-1 and marketed in the pages of Scientific American in 1971. The machine's name was taken from the middle of John's last name.

The Kenbak-1 as advertised in the pages of Scientific American

The Kenbak-1 was designed in 1970 and pre-dated microprocessors. The Intel 4004 (the worlds first microprocessor) was introduced in 1971. Instead of being microprocessor based the Kenbak-1 was built almost entirely from TTL components.

Unlike many earlier machines and calculating engines, the Kenbak-1 was a true stored-program computer that offered 256 bytes of memory, a wide variety of operations and a speed equivalent to nearly 1MHz.

Approximately 40 of these machines were built and sold before they were discontinued. The world just wasn't quite ready for personal computing and the Kenbak-1 lacked some critical capabilities (such as expandability and I/O) that were needed to foster the revolution. 14 are currently known to exist with few more likely to be discovered.

The slot on the front panel was presumably intended to account for these deficiencies later in the machines life by providing a card reader of some sorts but with the limited interest, that was never to be.

C.T.I. Educational products purchased the Kenbak-1 from John Blankenbaker and renamed the device to the CTI 5050.

More information about the history and use of the Kenbak-1 can be found at John Blankenbaker's Kenbak-1 Official Site.

Use of the Kenbak-1 (from the autobiography of Robert Neilson Sr.)

With the use of the manual, it was pretty easy to actually program the routine, enter it, read it back for accuracy, lock it in memory and upon pressing Start, run it. I thought the speed was excellent, considering the fact that it was a "programmable computer." The memory was sufficient to count up to 377 octal, or 256 binary and the sequence would start over. To state it lightly, I was amazed! When the Kenbak-1, was running, the console looked exactly like that of a Main Frame computer in action.

As I recall, I entered a number in memory, matched it and "branched/jumped" from the main routine into a subroutine to automatically stop the computer. Using the Console, I could verify the match visually. I also discovered that I could modify or troubleshoot the program with ease because of its design. The Console permitted me to enter an Address in memory and display its contents visually on the Console lights. That included all the registers including the Program Control Register.

The computer allowed the programmer to predict the next instruction to be executed and it had a "Single Cycle" feature that sometimes was essential in troubleshooting programs.

[…]The little computer's power was explored in depth and I became satisfied that it had "programmable power."

From John Blankenbaker

The name Kenbak was chosen for two reasons:

1. It reflects partially my name.

2. It is quite similar in form to the name Kodak which recalls the efforts of George Eastman to bring photography to the masses. I had a similar aim in mind.

I started my first computer design when I was a freshman in college at Oregon State College in February of 1949. For guidance I had a page from Popular Mechanics or a similar magazine. What I learned from it was that it used a number system with only two digits. After much effort I mastered the binary system and worked on the design of an arithmetic unit. When I started thinking about the memory I realized that the project was totally outside of my financial resources. Plus the design was not very good.

In the summer of 1951 I worked at the National Bureau of Standards as it was known then on the SEAC project (Standards Eastern Automatic Computer). This helped to convince me that computers would be a fun thing.

After graduation in 1952, I worked for Hughes Aircraft Company where my major job was the design of an arithmetic unit for a business data processor. In 1955, I did come up with a design for a computer with only one flipflop (see "Logically Microprogrammed Computers"). The limiting factor in building this was the lack of memories. Up to this time, I had never used a computer and I felt this omission badly which partially explains the motivation behind the Kenbak-1.

The Kenbak-1 computer was an attempt to implement a low cost computer that would be instructive to the user. Again the limiting factor was probably memories. It was not the lack of microprocessors which were not necessary.

The largest program I ever wrote for the Kenbak-1 which took the very last byte of memory was a program to play 3D tic-tac-toe (4 x.4 x 4). Actually, I was a bit short of memory as there was not room for the program to recognize when someone had won. The program would just keep playing indefinitely. How good was the program? It won about 50% of the time against me and I'm not very good.

At the first trade show where I exhibited the machine (a high school mathematics convention) I was floored by the lack of knowledge of the attendees over the calendar rules. I had a program which would determine whether any date in the last century was valid and if it was valid what day of the week it fell on (8 lights fits this perfectly). I had to take time to explain that leap year came, normally, every four years and this was to high school mathematics teachers!

One of the smallest and most successful programs would predict what a person would choose from a heads-tails if they were choosing heads or tails to try and fool the computer. (It was a play on the fact that the person's choices were not random.)

A Kenbak-1 Coding Sheet
Click on the image for a larger version

This sheet (the Kenbak Coding Sheet) tells just about all there is to know about the Kenbak-1.

There were three programming registers, A (location 000), B (001), and X (002) which were assigned locations in the memory. The X register was for memory indexing but could be used in any way you liked. The program counter was P and it was memory location 003. The lights displayed the contents of location 200. Input was made to 377. Operations that could be performed on A, B, and X were Addition, Subtraction, Load, Store, Logical Or, Logical And, Load Negative. The addressing modes were Immediate, Memory, Indirect, Indexed, and Indirect/Indexed. One could do things like subtract the contents of A from A which yielded Clear A.

Jumps could be based on the contents of A, B, and X with the criterion of Not Equal to Zero, Equal to Zero, Less than Zero, Greater than or Equal to Zero, or Greater than Zero. In addition there was an Unconditional Jump. There were two addressing modes, Direct and Indirect. Also, one could Mark the address from where the jump was made so you could return (to do subroutines).

All of these instructions were two bytes in length with the op code in the first and the address or data in the second.

There were a set of bit manipulations for setting a bit in a byte or testing a bit in a byte. I believe that the second byte was the address. In the case of the Skip, if the condition were met, the next two bytes in the instruction sequence would be skipped.

The A and B register could be rotated or shifted up to four places. To specify the B register, the second byte was augmented by four. During Addition, Subtraction and possibly the Shifts and Rotates, the overflow and carry out of the byte were stored as BO and B1 in three memory locations, 201, 202, and 203. [This is where I am the weakest in my memory.]

There was a NOOP and a HALT instruction (one byte each). Also there was a two byte NOOP.

Please bear in mind that it has been many years since I did any programming for this machine so some of what I told you may be in error.

My Kenbak-1

This particular Kenbak-1 is in remarkably good shape for its age. There is almost no noticeable damage to the case or front panel. Many of the switches had become unglued from the inner part of the front panel and needed to be reattached to allow full operation. According to the previous owner the machine worked before I got it.

At the moment the machine almost works but there is a disconnect between what is stored in memory and what is retrieved. This could be a failure on either operation or it could be a failure of the memory itself. There is a pattern to the failure which should be a clue.

The real issue, though, is whether or not I want to alter a pristine example of the Kenbak-1 in order to make it fully functional. At the moment, at least, I'm leaning towards leaving the machine as-is.

The inside of the Kenbak-1

As can be seen above the Kenbak-1 doesn't have a CPU. The two can shaped circuits in the upper left near the fan are the shift register memory.

The Kenbak-1 powered on with the lights glowing

The first time I powered up the Kenbak-1 was at The Vintage Computer Festival 7.0. I have since had a little time to play with the machine, as can be seen in the pictures above and below. I've since re-attached the switches and cleaned the machine up a bit.

The Kenbak-1 was my display at The Vintage Computer Festival 8.0 and it came in second place in its class. Don't let the fact that there were only two of us in the class fool you - it was up against some stiff competition!

The Kenbak-1 powered on with the lights glowing

The machine does look good when it's running, though!

Kenbak-1 Documentation

I also have copies of a complete set of Kenbak-1 documentation in my collection including instructions, a coding course and schematics.

The following images are close up shots of the logic board for the machine, both front and back. The component side images are broken up into six zones while the underside of the board was photographed as one shot.

Significantly larger versions of the following images can be seen by clicking on the smaller ones

An overview of the front of the Kenbak-1 logic board

An overview of the front of the Kenbak-1 logic board

An overview of the upper left of the Kenbak-1 logic board

An overview of the upper left of the Kenbak-1 logic board

An overview of the upper center of the Kenbak-1 logic board

An overview of the upper center of the Kenbak-1 logic board

An overview of the upper right of the Kenbak-1 logic board

An overview of the upper right of the Kenbak-1 logic board

An overview of the lower left of the Kenbak-1 logic board

An overview of the lower left of the Kenbak-1 logic board

An overview of the lower center of the Kenbak-1 logic board

An overview of the lower center of the Kenbak-1 logic board

An overview of the lower right of the Kenbak-1 logic board

An overview of the lower right of the Kenbak-1 logic board

An overview of the back of the Kenbak-1 logic board

An overview of the back of the Kenbak-1 logic board


(Submitted April 29, 2010 08:13:17 by John Blankenbaker)

The last production Kenbak-1 computer, never before sold, is for sale on Ebay.


(Submitted March 20, 2008 16:46:29 by Bill O'Neill)

The signetics 2504N shift register is pin compatible with the 1404.


(Submitted February 23, 2008 14:26:19 by Llamarama)

Hello. I am trying to build a kenbaK 1 OUT OF ttl but i cannot get the 1404A Shift Registers for memory. Are there any alternatives such as SRAM? Thanks.


(Submitted June 16, 2007 22:46:47 by Bill Hemmings)

The case is a standard Optima design. Not too sure about the blue paint job, though. I used a gray wrinkle finish one to build a four channel amplifier at around the same time (1970 +/-). Maybe somebody has an old Optima catalog? Seems to me I ordered mine from Allied Radio, so it may be in there, too. Cost was sorta high, maybe around $60-$70?


(Submitted March 8, 2007 07:32:11 by (a href=mailto:)Bill(/a))

Has anyone tried to replicate or clone this? This is truly beautiful - the case, the printed circuit board. This is simply art as function.


(Submitted February 22, 2007 11:59:51 by R.S.)

Here is an interesting site www.kenbak-1.net

Also, an Ebay auction in August 2005 caused a few heads to be turned and Mr. Blankenbaker was honored as a computer pioneer. www.compustory.com/Pioneers.html


(Submitted November 8, 2006 14:39:30 by Al Kossow)

) Where can I get a schematic?

http://bitsavers.org/pdf/kenbak


(Submitted November 3, 2006 21:17:02 by tonyv)

This is the most beautiful machine I have ever seen. I am in awe. I am in love with the PC- board, even. Is it just two layers? PLEASE send me the schematics.


(Submitted October 19, 2006 10:25:27 by Jesper)

Where can I get a schematic?


(Submitted September 24, 2006 16:27:35 by RIchard Snyder)

In 1972 I designed & built a small PC similar to the Kenbak. It is a miniature replica of the Data General NOVA 1200. I called it the MiniNova 721. Its front panel & assembly laguage were patterned after those of the NOVA. Carl Helmers wrote some very complimentary things about me & my MiniNova in his lead article in the 3rd issue of BYTE mag. Just last week I learned that the new Microsoft Computer Museum has info about me & my MiniNova!!!


(Submitted September 23, 2006 18:33:37 by Bruce Donnally)

My high school Computer class had about 5 of these 'PC's. Syracuse Central Tech was advanced for it's day in 1972. I never was able to get a program of mine to work, but its lights were like magic. Your fingers were very tired after using it, you had to enter in the machine instructions one finger at a time. It truly was portable, took it home on the weekends


(Submitted August 21, 2006 08:28:20 by (a href=mailto:infoattravnetdotorg)Travis Hein(/a))

At first I didn't see where the 256 bytes of memory could be, in that by counting up all the 74xx chips, there are 9 Dual D flip flops and 13 4 bit shift registers, for the total of 70 bits. Then I found the round metal 8-pin devices that read Intel 1404A are 1024 bit dynamic shift registers. Each one is 4 bits wide by 256 elements deep. So two of them form a 1 byte x 256. I found an article on them here: http://www.cpu-museum.com/Collectibles_e.htm


(Submitted June 30, 2006 10:04:06 by Erik Klein)

The two silver items that you pointed out are the shift register memory. They do look a bit like timing crystals but they aren't. I've got a couple of spares that I could photograph to give a bit more detail.

Actually, I've got a ton of additional information and lots more images I need to add to this page.


(Submitted June 30, 2006 04:57:28 by Zorb)

Can shaped circuits? I am afraid I do not see them. Other than the huge capacitor and its associates on what looks to be the power module, and a couple other (orange) electrolytic capacitors on the board (most laying down), a couple good sized resistors, the only can shaped components are the two silver timing crystals right next to each other at the left, about 60% to the top.

Add additional information or comments to this page:

Please use these comments to add to or correct the contents of this page. If you are looking for information, software or hardware please consider posting on the Vintage Computer Forums. If you have a vintage, classic, antique or collectable computer, game or related item(s) for sale or trade please consider using the fee free Vintage Computer and Gaming Marketplace

Please be aware that the email address you post will be posted in the clear. Spam bots can and will pick it up and use it. Please protect your email address by obfuscating it (i.e. webmasterNOSPAM@vintage-computerNOSPAM.com) or use an address with a good spam filter.

Also please consider using the Vintage Computer Forums for information or the Vintage Computer and Gaming Marketplace for the fee free sale or purchase of vintage, classic, antique or collectable computers, games and ephemera as mentioned above.


Your Name:

Your email address:

What would you like to add:

Please enter "BLUE" in the field below as a Check String:


Powered by MakeBook v3.0.1