1977 3.12 1979

Vol.3 n°12 december 1978

Vol.3 n°12 december 1978

(byte_1978_12.jpg)

[editor : Carl T. Helmers Jr.] [publisher : Virginia Londoner (Virginia Londner), Gordon R Williamson] [art : Stephen Kruse, Wai Chiu Li, Dorothy Shamonsky, Ellen Shamonsky] [cover : Robert Tinney] #Magazine

p.4 In This BYTE

p.4 In This BYTE

#Abstract

p.14
p.14

The advent of the personal computer has made possible the calculation of the fast Fourier transform (FFT) on the small system. Applications of this powerful design tool include speech and music analysis as well as circuit design and development. Read Fast Fourier Transforms on Your Home Computer by William D Stanley and Steven J Peterson. page 14

p.26
p.26

Quite often a software approach to a problem is easier to implement than a hardware approach to the same problem. Tom Munnecke describes the software used in Designing a Universal Turing Machine and compares it to a comparable hardware approach. page 26

p.32
p.32

Steve Ciarcia describes a simple but useful addition to your computer in Build an Octal/Hexadecimal Output Display. This circuit can help you to convert from octal to hexadecimal (and vice versa) or give you the status of a byte during program execution. page 32

p.45
p.45

Our cover theme this month (painted by Robert Tinney) is the game of Life. In Life with Your Computer, Justin Milliun, Judy Reardon and Peter Smart give a starting point for developing your own version of this exciting game. page 45

p.54
p.54

Researchers probing cellular automata have used Conway's game of Life as a tool in creating a collection of strange and exciting patterns. In David Buckingham's article Some Facts of Life we find a description of discoveries made since the original flurry of activity several years ago. page 54

p.68
p.68

One-Dimensional Life is an intriguing variant on John Conway's famous game. Out of this restricted format comes a surprising variety of familiar Life figures such as the flip flop and glider. Dr Jonathan K Millen leads us down the Life line in One-Dimensional Life. page 68

p.84
p.84

The same folks who brought you Chess 4.6 now bring you a new, improved version, Chess 4.7 . Read the story of the epic battle of the mighty computer and the tenacious, clever human chess master in an article by J R Douglas, Chess 4.7 versus David Levy. page 84

p.94
p.94

In many microcomputer applications it is desirable to have a cheap method for printing numerical data. Robert H Astmann describes a way to interface a Texas lnstruments 5050M printing calculator to an 8080A based computer in Interface Your Computer to a Printing Calculator. page 94

p.100
p.100

When building a computer system it is frequently advisable to have your most often used basic routines stored in read only memory so that they will always be readily available. To make the best use of read only memory, the experimenter should be able to program his own. G H Gable describes one system for programming read only memory in his article, Zapper: A Computer Driven EROM Programmer. page 100

p.108
p.108

Are you having trouble affording enough hardware to support a high level language such as BASIC? Are you finding it difficult to program in your machine's assembler language? If your answer to either of those questions is "yes," then what you're looking for is An Easy Programming System. In this article, Joe Weisbecker gives an introduction to hexadecimal interpretive programming, an alternative to high level languages and assemblers alike. page 108

p.124
p.124

Computer aided instruction is an excellent microcomputer application. To perform this function correctly, it helps to have a programming language designed for the purpose. Prof George A Gerhold describes some of the features such a language should possess in Teaching with a Microcomputer. page 124

p.128
p.128

If you have a need for multiplication and division circuits and don't want to worry about timing diagrams, read Mike Weed's discussion of some Clockless Multiplication and Division Circuits you can work with. page 128

p.140
p.140

This month we present the second half of Chess 0.5 in the series Creating a Chess Player by Peter W Frey and Larry R Atkin. The program was written by Larry Atkin, who is coauthor with David Slate of the world championship computer chess program, Chess 4.6. The program is written in Pascal and is readily adaptable to personal computers having Pascal systems such as the UCSD Pascal project software. page 140

p.168
p.168

To get the most out of your floppy disk units, you should know how to handle the data that will be stored on them efficiently. A I Halsema introduces us to the concept of Partitioned Data Sets and briefly describes a method for implementing them. page 168

p.186
p.186

What is the world going to be like in twenty years? That's a difficult question to answer, but the chances are that microcomputers will be part of it. Lawrence Willard takes a lighthearted look at one possible future in his story, The Mother Chip. page 186

p.194
p.194

FORTRAN is one of the antecedents to a number of computer languages. The ever popular BASIC is in some respects a simplification of FORTRAN. A number of later languages build upon the computer science learning experience which was FORTRAN and its compilers in the late 1950s and early 1960s. FORTRAN is even now becoming available in floppy disk based systems at the high end of the personal computing performance range. In this issue, W Douglas Maurer provides readers with an article on FORTRAN and Its Generalizations, good background reading on an important and still much used language. page 194

p.6 New Wonders of the Computer Age

p.6 New Wonders of the Computer Age

[author : Carl Helmers] #Edito

Extract : «  In recent months, trends in the development of integrated circuit technology have reached new highs of accomplishment, such that it is possible to note some exciting possibilities for design in the next year or so. These new highs are on a broad front of semiconductor technology which is required for the small computers our readers buy and use. The effects of this new technology may not be seen in the retail marketplace for another year or so, since there is a finite design delay time between the availability of a part's design specification and its appearance in finished products.

The first new high in semiconductor technology is the announcement of several new 64 K bit dynamic memory parts (see the Texas Instruments TMS 4164 described on page 209 of this issue). What are the implications of this technology for personal computers? Quite simply, they are new lows in prices for the same functions we see now in the marketplace. Eventually the prices of the 64 K parts will fall to the under $20 level now seen in 16 K chips purchased in volume. Where it once took 32 chips of 16 K bits per chip to saturate a personal computer's address space, it will now take only eight chips (and perhaps a dynamic memory controller chip) to do the same thing. It is now possible to combine a current model microprocessor, a video controller chip, a dynamic memory interface chip, a floppy disk controller chip, and one or two parallel interface chips with eight memory chips and obtain a very complete electronics module for a small computer that uses only 13 or 14 integrated circuits, yet has the performance of a large scale minicomputer of several years ago. In short, the memory address space potential of the current 8 bit microprocessors has effectively become saturated. [...]  »

TABLE OF CONTENTS

Foreground

Foreground

p.14 FAST FOURIER TRANSFORMS ON YOUR HOME COMPUTER

p.14 FAST FOURIER TRANSFORMS ON YOUR HOME COMPUTER

[theme : Software] [author : Stanley-Peterson] #Mathematics #Listing #BASIC #Book

Extract : «  The advent of the home computer makes possible many new and varied applications both of a general nature and of a scientific or mathematical nature. One of the latter applications we have successfully implemented on a personal computer is the fast Fourier transform, which we will subsequently refer to as the FFT, according to standard usage. Some of the most important properties of the FFT are described in this article, and an FFT program written for the Digital Group Z-80 System using BASIC is provided. [...]  »

p.26 DESIGNING A UNIVERSAL TURING MACHINE: A Software Approach

p.26 DESIGNING A UNIVERSAL TURING MACHINE: A Software Approach

[theme : Software] [author : Munnecke] #Simulation #Listing #Assembly #Book

Extract : «  Hardware or software; which is best? This question faces many designers when creating new systems. This article describes a software version of a hardware project detailed in December 1976 BYTE by Jonathan K Millen in his article "A Universal Turing Machine," page 114.

The universal Turing machine (UTM) is elegantly simple and capable of emulating the instruction set of any computer. The Turing machine was invented by Alan Turing (1912-1954). It is an abstract computing device that contains all the fundamental properties a computer system must possess and is used to study computer concepts. Although difficult to program, its back-to-basics nature is alluring to anyone interested in the fundamentals of computers.

The universal Turing machine designed by Jonathan Millen has two memories: one for program storage and the other for the main storage or "tape." The tape is a supposedly infinite (but actually 1024 bits long) memory which is a series of 1s and 0s. A bit on the tape is pointed to by a counter known as the head. A program counter points to a state in the program being executed. Each state consists of two instructions: one to be used if the current bit under the head of the tape is a 1 , the other if it is a 0. Each instruction contains fields describing whether to write a 1 or a on the tape, which direction to move the tape (left or right one position), and the address of the next state to be executed. [...]  »

p.32 BUILD AN OCTAL/HEXADECIMAL OUTPUT DISPLAY

p.32 BUILD AN OCTAL/HEXADECIMAL OUTPUT DISPLAY

[theme : Hardware] [author : Ciarcia] #Display #Electronic

Extract : «  [...] Some people may consider hexadecimal displays a trivial addition to an expensive computer system, but sometimes these little add-ons make program debugging easier. I can't help but wonder whether other computer experimenters would have need for such a display. I don't expect it to replace the video display; but often, when debugging a program, it's nice to be able to display a byte here and there to verify proper program execution. It will never replace the stepper and breakpoint monitor I now use, but it's great to display keyboard or IO data quickly with a single output instruction.

There are many methods to display hexadecimal numbers on a 7 segment LED. Figure 1 and table 1 show an example of the usual brute force method using a read only memory as a hexadecimal decoder. Programming the 82S23 was described in the November 1975 BYTE ("A Versatile Read Only Memory Programmer" by Peter H Helmers, page 66). While this is a viable approach, an excessive number of components is needed in this stand alone display, and most people would rather not have to program an EROM. The alternatives are to allow a computer to perform the decoding and drive the 7 segment display through the transistors from a latched 8 bit output port, or to put additional logic around a standard 7 segment decoder driver for the extra requirements. The former case necessitates a computer program while the latter can involve as many components as those in figure 1. [...]  »

p.94 INTERFACE YOUR COMPUTER TO A PRINTING CALCULATOR

p.94 INTERFACE YOUR COMPUTER TO A PRINTING CALCULATOR

[theme : Hardware] [author : Astmann] #Interface #Printer #Listing #Assembly

Extract : «  There are many microprocessor applications in which it is desirable to produce a hard copy of numeric information being measured or computed, yet even the cheapest of today's low cost printers could easily be the most expensive component of such a system. A solution to this problem is to use one of the thermal printing calculators now available. By means of an interface to a microprocessor, the calculator integrated circuit can be given stimuli identical to those received during the normal pushing of the calculator keys. In this article I describe such an interface which was implemented using an Intel 8080A processor and a Texas Instruments 5050M printing electronic calculator. [...]  »

p.100 ZAPPER: A Computer Driven EROM Programmer

p.100 ZAPPER: A Computer Driven EROM Programmer

[theme : Hardware] [author : Gable] #Storage #Programming #Electronic #Listing #Assembly

Extract : «  One of the most fascinating and useful products of recent technology is the read only memory (often abbreviated as ROM) and especially useful for the experimental systems designer is the erasable and electrically programmable read only memory, variously abbreviated EROM or EPROM.

In designing my first microprocessor based system, a read only memory was a must to contain the operating system and the floating point arithmetic firmware. I did extensive research into read only memory systems and after a week or so I was ready to make a specification. I had previously chosen the processor for the system to be the MOS Technology 6502 which requires a memory access time of about 500 ns when running with a 1 MHz clock. It was very desirable to have the read only memory meet this specification for two reasons. First, because of the dynamic nature of the 6502, it does not wait for slow memory very readily. Second, and by far most important, I wanted my arithmetic routines in read only memory to run as fast as possible since I would be using them very often. These considerations ruled out the older 1702 type memories as too slow. [...]  »

p.128 CLOCKLESS MULTIPLICATION AND DIVISION CIRCUITS

p.128 CLOCKLESS MULTIPLICATION AND DIVISION CIRCUITS

[theme : Hardware] [author : Weed] #Mathematics #Electronic

Extract : «  Digital integrated circuits that multiply binary numbers without the use of clock pulses have been available for several years. One such 4 bit by 4 bit multiplier is illustrated in figure 1. The 8 bit product appears on the output lines about 40 ns (the propagation delay) after the input lines are set. Larger numbers may be multiplied by first sectioning the inputs into 4 bit words, forming the products of each word of one input with every word of the other input, and summing these products in the appropriate manner. The propagation delay increases approximately linearly with the number of input bits. The number of integrated circuits required increases roughly as the number of bits in the multiplier times the number of bits in the multiplicand.

Multipliers are readily constructed from simpler integrated circuits. A 4 by 4 multiplier is illustrated in figure 2. The four bits of the multiplicand are gated into the adder M places from the right if the Mth bit of the multiplier is 1. If this bit is 0, only is added in. The parts count is minimized by bringing the carry output of the last adder back to a previous adder input. This system costs less than the circuit in figure 1. Its disadvantages are a higher components count and a 60 percent increase in power requirements. The two systems have comparable propagation delays. [...]  »

p.140 CREATING A CHESS PLAYER, Part 3: Chess 0.5 (continued)

p.140 CREATING A CHESS PLAYER, Part 3: Chess 0.5 (continued)

[theme : Computer Chess Software] [author : Frey-Atkin] #GameBoard #Listing #Pascal

Extract : «  This month we conclude the listing and commentary of Chess 0.5 begun last issue. The program was written by Larry A thin, who is coauthor with David Slate of the world championship chess program, Chess 4.6. The program is readily adaptable to personal computers having Pascal systems such as the UCSD Pascal project software. Part 4 concludes the series with a discussion of chess strategy and tactics.

Evaluating Terminal Positions

Another important aspect of any chess program is the function which provides a static evaluation of terminal positions in the look-ahead tree. In the present program, this routine also doubles as a preliminary scoring function for sorting moves at the first ply, at the beginning of the look-ahead search. Since the evaluation function is used repetitively in the search, efficiency demands that it be carefully engineered. We have left this task as an exercise for the reader. Our function presently includes only a few basic essentials. [...]  »

p.168 PARTITIONED DATA SETS

p.168 PARTITIONED DATA SETS

[theme : Tutorial] [author : Halsema] #Storage #Algorithm

Extract : «  If you have a floppy disk and are having trouble keeping track of where your programs and data are written on it, this simple file organization technique may provide the automated management of disk space you need.

A partitioned data set (PDS) is a file divided (or partitioned) into areas, each area containing data not related to data in other areas. For example, a system library might contain a source editor, assembler and linkage editor. Each of these programs could be stored in a separate partition in a partitioned data set. The partitioned areas in which these programs would be stored are called members of the data set, so the partitioned data set just described would contain three members, as in figure 1. [...]  »

Background

Background

p.45 LIFE WITH YOUR COMPUTER

p.45 LIFE WITH YOUR COMPUTER

[theme : Applications : Life Games] [author : Milliun-Reardon-Smart] #Simulation #Algorithm #Initiation

Extract : «  What can you do with your computer? After hearing about the game of Life, you may never ask the question again. Within the capabilities of a very minimal system, Life gives the computer the kind of job it does best: an enormous amount of repetitive logical operations. [The authors' system demonstrates this point: it had 2 K memory and a video terminal at the time of this writing.] This leaves you, the user, free to apply your creative energy on this fascinating game.

Developed by John Horton Conway, a British mathematician at the University of Cambridge, Life was first described in the October 1970 Scientific American by Martin Gardner in his "Mathematical Games" column. Its name comes from its resemblance to changing societies of living organisms which can grow, move and occasionally die out. [...]  »

p.54 SOME FACTS OF LIFE

p.54 SOME FACTS OF LIFE

[theme : Life] [author : Buckingham] #Simulation #Algorithm #Initiation

Extract : «  Life is a game that was developed by Prof John H Conway at the University of Cambridge and first presented by Martin Gardner in the October 1970 "Mathematical Games" column in Scientific American. The game is derived from a field of mathematics known as automata theory (in this case cellular automata). In the February 1971 "Mathematical Games" column the game was described again along with a good introduction to automata theory.

The game is played on a uniform cellular grid (in this case an area divided into squares, such as graph paper) where every cell is surrounded by eight immediate neighbors (ie: cells touching the center cell under consideration). Each cell, or automaton, can be in either a 1 or state (on or off — alive or dead). The population of cells is changed by a set of predetermined rules. These changes proceed in intervals called generations. [...]  »

p.68 ONE-DIMENSIONAL LIFE

p.68 ONE-DIMENSIONAL LIFE

[theme : Life Games] [author : Millen] #Simulation #Algorithm #Initiation

Extract : «  The game of Life is known to many computer experimenters for its beautiful, symmetrical two-dimensional displays and for its imaginary population of blinkers, beehives, gliders, and other strange, pseudoliving organisms. Invented by the British mathematician John Conway, the game was described in the "Mathematical Games" section of Scientific American in October 1970 and February 1971. A series of articles on how to program it for a home computer also appeared in three of the earliest issues of BYTE ("LIFE Line 1, 2, and 3," BYTE September 1975, page 72; October 1975, page 34; December 1975, page 48). It is an attractive home computer software project, but the program requirements in memory capacity, processor speed and display capability were more than I possessed in my homebrew machine. The programming effort also looked formidable. I developed One-Dimensional Life as a small scale substitute. [...]  »

p.84 CHESS 4.7 VERSUS DAVID LEVY

p.84 CHESS 4.7 VERSUS DAVID LEVY

[theme : Computer Chess] [author : Douglas] #GameBoard #Experience

Extract : «  After 29 years, computer chess finally achieved a victory in human competition at the master class tournament level. During the fourth game of a match held at the Canadian National Exhibition from August 26 to September 4 1978, International Master David Levy resigned to Chess 4.7/ CYBER 176 after 56 moves, although he did win the tournament, 3½ to 1½.

David Levy was three years old in 1949, when the American mathematician and computer science pioneer Claude Shannon produced the first paper describing the methodology for producing chess playing computer programs. Not until 1956 did any machine win a game against a human opponent: MANIAC, a system developed at the Los Alamos Scientific Laboratory, won a greatly simplified chess game against a novice player in 23 moves. [...]  »

p.108 AN EASY PROGRAMMING SYSTEM

p.108 AN EASY PROGRAMMING SYSTEM

[theme : Software] [author : Weisbecker] #Languages #Programming #Algorithm

Extract : «  This article describes a hexadecimal interpretive programming system which requires less hardware than high level languages such as BASIC, and which I feel is much easier to use than machine language. In my experience, hexadecimal interpretive programming is ideally suited to real time control, video graphics, games or music synthesis. It can be used with inexpensive computer systems consisting of a hexadecimal keyboard and only 1 K or 2 K of programmable memory. Expensive terminals and large memories aren't required. You can quickly and easily write useful programs that require five to ten times less memory than conventional high level languages without resorting to the tedious complexities of actual machine language.

Interpretive Programming

This programming approach isn't new, but surprisingly few people seem to be using it. The technique consists of designing a high level pseudomachine language that is more powerful for specific applications than conventional machine language. An interpretive program is then written to execute this new set of pseudoinstructions. Each pseudoinstruction is really just a code that specifies a machine language subroutine. This set of subroutines can be designed to perform any functions you might need for your application. By staying with a machine language format, and not using labels or English words for instruction codes, memory requirements are lower. By limiting the addressing range and number of variables, you can limit each pseudoinstruction code length to several bytes for further memory space savings. Interpretive programs for these powerful pseudomachine languages can require as few as 512 bytes of memory. It has seldom taken me more than a week to implement a new hexadecimal interpretive language, and I can then use it for years. The approach can be thought of as vertical microprogramming with the microprocessor machine language used as the microcode representation. [...]  »

p.124 TEACHING WITH A MICROCOMPUTER

p.124 TEACHING WITH A MICROCOMPUTER

[theme : Applications] [author : Gerhold] #Education

Extract : «  Who doesn't want a tutor who is infinitely patient, expert on almost any subject under the sun, available at your beck and call, adapted to your learning speed and style, and cheap? This has attracted the attention of a number of the manufacturers of personal computers, and several of them make prominent reference to educational applications in their advertising. But the customer who uses educational applications to justify raiding the family budget for a computer will have some explaining to do, for good teaching software on microcom- puters is not available, nor is it easy to write. Why?

If you examine the 20 years of development of computer assisted instruction (CAI) on mainframe computers, you'll see that the computer can be an effective teaching tool when used properly. Students taught with a computer perform as well or better than comparison groups; they may learn two or three times faster. Their failure rate is lower and they express satisfaction with the technique. Why then is the technique not more widely used? There are three main reasons. [...]  »

p.186 THE MOTHER CHIP

p.186 THE MOTHER CHIP

[theme : Fiction] [author : Willard] #Anticipation

Extract : «  Jonathon Witherspoon Twombly floated up out of a warm and comfortable world of drifting, unconnected images to begin, unfortunately, a new day. He stared at the cream colored ceiling, as he always did, to read the wedge of light that fanned from the top of the window shade to intersect a discolored area of the ceiling in a fairly significant manner. Nine o'clock, he guessed, disdaining for three and a half seconds the absolute accuracy of his Minnie on the bedside table. He rolled over and looked at it, stubbornly translating 24 hour time to his own archaic measure. His guess was a mere four minutes and ten seconds slow. Pretty close, he noted contentedly.

The mini-mini-micro-processor, his own personal computer link to the vast and complex world of 1997, winked at him with a softly glowing numeral 3. Not much larger than a deck of playing cards and half as thick, Minnie rested upright in her umbilical slot, absorbing power for her batteries and sharing her thoughts with the house computer in its basement hideaway. A rather old microprocessor, Mike ran the house, but Minnie was boss as long she was plugged into the table, or as long she was on Twombly's person and not more than a mile distant from the house. Beyond that range she could integrate with Mike up to a distance of 40 miles using the high power car facilities, and beyond the 40 mile radius she could use the worldwide network of relay stations. But that cost money and was rarely necessary. Jonathon Twombly did not travel very much or very far. [...]  »

p.194 FORTRAN AND ITS GENERALIZATIONS

p.194 FORTRAN AND ITS GENERALIZATIONS

[theme : Language Tutorial] [author : Maurer] #Fortran

Extract : «  The average small system user will not be able to use FORTRAN as a programming language for his or her system. Some small systems have BASIC, and there is at least one FORTRAN system for the 8080 (available from Microsoft), but FORTRAN is still chiefly a language for large computers (including minicomputers and mid-size computers). Nevertheless, there are many situations in which a knowledge of FORTRAN is important even to the small system user. The most important of these is in the description of algorithms. It is of no use to describe an algorithm in, say, INTEL 8080 assembly language, since this would not make sense to users of Motorola and other microcomputers; so algorithms are very often described either in FORTRAN, or in some other algebraic language. FORTRAN, though, seems to be the one that is used most often for this purpose, since more people know FORTRAN than any other algebraic language.

There are hundreds of books on FORTRAN today, all of which are written for the large system user who is, presumably, actually going to use FORTRAN to solve problems. It is very rare that one finds a description of FORTRAN written for those who merely need to understand algorithms written in FORTRAN, but who are going to rewrite those algorithms in some other language themselves. The present article is written to fill this need. [...]  »

Nucleus

Nucleus

p.10 Letters

p.10 Letters

p.43 Book Reviews

p.43 Book Reviews

#Book

Extract : «  The Pocket Calculator Game Book by Edwin Schlossberg and John Brockman William Morrow and Company Inc New York 1975 158 pages hardbound $6.95 [...]  »

p.76 Programming Quickies: Life

p.76 Programming Quickies: Life

p.92 Nybbles: Z-80 Assembler

p.92 Nybbles: Z-80 Assembler

p.161 p.163 BYTE's Bits, BYTE's Bugs

p.161 p.163 BYTE's Bits, BYTE's Bugs

p.164 Event Queue

p.164 Event Queue

p.166 Clubs, Newsletters

p.166 Clubs, Newsletters

#Association

p.174 Programming Quickies : Tic-Tac-Toe in BASIC

p.174 Programming Quickies : Tic-Tac-Toe in BASIC

p.176 Languages Forum

p.176 Languages Forum

p.184 p.202 p.208 Technical Forum

p.184 p.202 p.208 Technical Forum

p.192 Desk Top Wonders : A Game for the TI-58

p.192 Desk Top Wonders : A Game for the TI-58

p.209 What's New?

p.209 What's New?

p.246 Unclassified Ads

p.246 Unclassified Ads

p.248 BOMB, Reader Service

p.248 BOMB, Reader Service

ADS (content taken from the reader service p.248)

ADS (content taken from the reader service p.248)

p.207 AAA Chicago Computer Center

p.207 AAA Chicago Computer Center

p.236 Addmaster Corporation

p.236 Addmaster Corporation

p.161 Administrative Systems

p.161 Administrative Systems

p.201 AJA Software

p.201 AJA Software

p.82 p.83 Alpha Micro Systems

p.82 p.83 Alpha Micro Systems

p.42 Altos

p.42 Altos

p.171 Ambico

p.171 Ambico

p.236 Apparat Inc

p.236 Apparat Inc

p.8 p.9 Apple Computer

p.8 p.9 Apple Computer

p.173 Art-by-Computer

p.173 Art-by-Computer

p.113 Artec Electronics

p.113 Artec Electronics

p.125 Artec House

p.125 Artec House

p.242 ATV Research

p.242 ATV Research

p.238 AVR Electronics

p.238 AVR Electronics

p.21 Axiom

p.21 Axiom

p.63 Base 2 Inc

p.63 Base 2 Inc

p.242 Basic Computer Shop

p.242 Basic Computer Shop

p.245 Beckian Enterprises

p.245 Beckian Enterprises

p.236 Benchmark Computing Services

p.236 Benchmark Computing Services

p.242 Beta Business Systems

p.242 Beta Business Systems

p.133 p.136 p.138 p.139 p.155 BITS

p.133 p.136 p.138 p.139 p.155 BITS

p.162 Byte Industries

p.162 Byte Industries

p.203 BYTE Back Issues

p.203 BYTE Back Issues

p.203 BYTE Subscribers

p.203 BYTE Subscribers

p.203 BYTE WATS Line

p.203 BYTE WATS Line

p.208 Buss/Charles Floto

p.208 Buss/Charles Floto

p.217 California Digital

p.217 California Digital

p.208 Cambridge University Press

p.208 Cambridge University Press

p.244 Career Advertiser

p.244 Career Advertiser

p.107 Central Data

p.107 Central Data

p.188 Chrislin Industries

p.188 Chrislin Industries

p.236 Circle Enterprises

p.236 Circle Enterprises

p.244 Compugard Corp

p.244 Compugard Corp

p.150 Computalker

p.150 Computalker

p.157 Computer Corner

p.157 Computer Corner

p.157 p.204 Computer Enterprises

p.157 p.204 Computer Enterprises

p.127 Computer Factory

p.127 Computer Factory

p.236 Computer Hardware Store

p.236 Computer Hardware Store

p.238 Computer Interface Technology

p.238 Computer Interface Technology

p.183 Computer Lab of NJ

p.183 Computer Lab of NJ

p.10 p.11 p.87 p.191 Computerland

p.10 p.11 p.87 p.191 Computerland

p.238 Computer Mart of NH

p.238 Computer Mart of NH

p.171 Computer Mart of NJ & PA

p.171 Computer Mart of NJ & PA

p.196 Computer Plus

p.196 Computer Plus

p.187 CP Aids

p.187 CP Aids

p.183 p.206 CT Micro Computer

p.183 p.206 CT Micro Computer

p.177 Control Data Corp

p.177 Control Data Corp

p.1 p.2 Cromemco

p.1 p.2 Cromemco

p.178 Cyber-Score

p.178 Cyber-Score

p.182 Data Discount Center

p.182 Data Discount Center

p.173 Datafacs

p.173 Datafacs

p.173 Datasearch

p.173 Datasearch

p.244 Datec Inc

p.244 Datec Inc

p.144 Digital Pathways

p.144 Digital Pathways

p.119 Digital Research (CA)

p.119 Digital Research (CA)

p.219 Digital Research (TX)

p.219 Digital Research (TX)

p.199 Digital Research & Eng

p.199 Digital Research & Eng

p.12 p.13 Dynabyte

p.12 p.13 Dynabyte

p.165 Ed-Pro

p.165 Ed-Pro

p.230 Electrolabs

p.230 Electrolabs

p.192 Electro Analytic Systems

p.192 Electro Analytic Systems

p.205 Electronic Control Technology

p.205 Electronic Control Technology

p.221 Electronic Systems

p.221 Electronic Systems

p.223 Electronics Warehouse

p.223 Electronics Warehouse

p.166 EMM/CMP

p.166 EMM/CMP

p.182 EMM/Semi

p.182 EMM/Semi

p.187 Escon

p.187 Escon

p.190 Forethought Products

p.190 Forethought Products

p.238 Gamma Technology

p.238 Gamma Technology

p.105 Godbout

p.105 Godbout

(p.CIII) Graham Dorian Enterprises

(p.CIII) Graham Dorian Enterprises

p.33 GRT Corporation

p.33 GRT Corporation

p.183 H & E Computronics

p.183 H & E Computronics

p.242 Hamilton Logic Systems

p.242 Hamilton Logic Systems

p.17 p.236 Heath Company

p.17 p.236 Heath Company

p.211 Hobby World

p.211 Hobby World

p.35 Houston Instruments

p.35 Houston Instruments

p.197 HUH Electronics

p.197 HUH Electronics

p.244 Idea Assemblers

p.244 Idea Assemblers

p.244 Infinite

p.244 Infinite

p.92 p.93 Integral Data Systems

p.92 p.93 Integral Data Systems

p.192 Integrand

p.192 Integrand

p.225 Integrated Circuits Unlimited

p.225 Integrated Circuits Unlimited

p.236 Intelligent Design

p.236 Intelligent Design

p.126 International Data Sciences

p.126 International Data Sciences

p.81 p.215 Ithaca Audio

p.81 p.215 Ithaca Audio

p.213 Jade

p.213 Jade

p.226 p.227 Jameco Electronics

p.226 p.227 Jameco Electronics

p.173 Leland Sheppard

p.173 Leland Sheppard

p.201 Lifeboat Associates

p.201 Lifeboat Associates

p.236 M, M, & S Software

p.236 M, M, & S Software

p.244 Manchester Equipment

p.244 Manchester Equipment

p.242 The Math Box

p.242 The Math Box

p.180 Meca

p.180 Meca

p.165 Micro-Ap

p.165 Micro-Ap

p.57 Micro Diversions

p.57 Micro Diversions

p.19 MicroDaSys

p.19 MicroDaSys

p.147 Micro Focus LTD

p.147 Micro Focus LTD

p.167 Micro Mail

p.167 Micro Mail

p.31 Micromation

p.31 Micromation

p.190 Micro Mike's

p.190 Micro Mike's

p.200 Microproducts

p.200 Microproducts

p.245 Microprogramming

p.245 Microprogramming

p.77 Micro Pro International

p.77 Micro Pro International

p.176 Microtronics

p.176 Microtronics

p.129 The Micro Works

p.129 The Micro Works

p.51 Micro World

p.51 Micro World

p.230 Mikos

p.230 Mikos

p.23 p.97 Morrow/Thinker Toys

p.23 p.97 Morrow/Thinker Toys

p.175 Motorola Semiconductor Products Inc

p.175 Motorola Semiconductor Products Inc

p.200 mpi

p.200 mpi

p.207 Mullen Computer Boards

p.207 Mullen Computer Boards

p.149 National Multiplex Corp

p.149 National Multiplex Corp

p.163 Netronics Research

p.163 Netronics Research

p.109 New England Electronics

p.109 New England Electronics

p.95 New England Personal & Business Computer Show

p.95 New England Personal & Business Computer Show

p.242 New England Recruiters

p.242 New England Recruiters

p.229 Newman Computer Exchange

p.229 Newman Computer Exchange

p.5 p.29 North Star Computer

p.5 p.29 North Star Computer

p.59 Northwest Microcomputing Systems

p.59 Northwest Microcomputing Systems

p.111 Nucleonic Products (Necleonic Products)

p.111 Nucleonic Products (Necleonic Products)

p.37 p.40 p.41 Ohio Scientific Instruments

p.37 p.40 p.41 Ohio Scientific Instruments

p.99 OK Machine & Tool

p.99 OK Machine & Tool

p.199 Oliver Advanced Engineering

p.199 Oliver Advanced Engineering

p.238 Optimal Technology

p.238 Optimal Technology

p.131 Osborne & Associates

p.131 Osborne & Associates

p.242 Owens Associates

p.242 Owens Associates

p.197 Pacific Digital

p.197 Pacific Digital

p.234 Pacific Office Systems

p.234 Pacific Office Systems

p.235 Page Digital

p.235 Page Digital

p.172 PAIA Electronics

p.172 PAIA Electronics

p.206 PCE Electronics

p.206 PCE Electronics

p.75 PerCom Data

p.75 PerCom Data

p.15 PerSci Inc

p.15 PerSci Inc

p.91 Personal Software

p.91 Personal Software

p.106 Personal Systems Consulting

p.106 Personal Systems Consulting

p.231 p.232 p.233 Priority I

p.231 p.232 p.233 Priority I

p.6 p.7 Processor Technology

p.6 p.7 Processor Technology

p.159 Program Design Inc

p.159 Program Design Inc

p.71 PRS Corporation

p.71 PRS Corporation

p.239 Quest Electronics

p.239 Quest Electronics

p.244 Radio Shack Authorized Sales Center

p.244 Radio Shack Authorized Sales Center

p.44 RCA

p.44 RCA

p.201 Real World Simulations

p.201 Real World Simulations

p.142 The Recreational Programmer

p.142 The Recreational Programmer

p.244 Rochester Data Inc

p.244 Rochester Data Inc

p.160 Rockwell

p.160 Rockwell

p.243 Rondure Co

p.243 Rondure Co

p.167 Rothenberg Information System

p.167 Rothenberg Information System

p.196 S-100

p.196 S-100

p.244 Saddle Brook Stereo Inc

p.244 Saddle Brook Stereo Inc

p.67 p.73 p.78 Scientific Research

p.67 p.73 p.78 Scientific Research

p.49 p.52 p.53 p.61 Scelbi

p.49 p.52 p.53 p.61 Scelbi

p.137 Scelbi/BYTE Primer

p.137 Scelbi/BYTE Primer

p.115 Seattle Computer Products

p.115 Seattle Computer Products

p.164 Semionics

p.164 Semionics

p.143 Michael Shrayer Software

p.143 Michael Shrayer Software

(p.CIV) Shugart

(p.CIV) Shugart

p.236 Silver Spur

p.236 Silver Spur

p.158 Small Business Computer Magazine

p.158 Small Business Computer Magazine

p.27 p.189 p.191 Smoke Signal Broadcasting

p.27 p.189 p.191 Smoke Signal Broadcasting

p.141 Softside

p.141 Softside

p.198 Software 80

p.198 Software 80

p.237 Solid State Sales

p.237 Solid State Sales

(p.CII) Southwest Technical Products Corp

(p.CII) Southwest Technical Products Corp

p.80 SSM

p.80 SSM

p.122 Stirling Bekdorf

p.122 Stirling Bekdorf

p.121 Structured Systems Group

p.121 Structured Systems Group

p.142 Structured Systems Group

p.142 Structured Systems Group

p.79 Summagraphics

p.79 Summagraphics

p.181 Sybex Inc

p.181 Sybex Inc

p.103 Synchro Sound

p.103 Synchro Sound

p.174 Talos

p.174 Talos

p.145 Tano

p.145 Tano

p.117 Tarbell Electronics

p.117 Tarbell Electronics

p.123 Technical Systems Consultants

p.123 Technical Systems Consultants

p.238 Telecommunications Services

p.238 Telecommunications Services

p.99 Terrapin

p.99 Terrapin

p.238 Terminal Systems

p.238 Terminal Systems

p.243 3 S Sales

p.243 3 S Sales

p.238 Tora Systems Limited

p.238 Tora Systems Limited

p.195 Total Information Services

p.195 Total Information Services

p.183 Trans Data Corp

p.183 Trans Data Corp

p.189 Transition Enterprises

p.189 Transition Enterprises

p.172 TransNet Corp

p.172 TransNet Corp

p.234 Tri Tek

p.234 Tri Tek

p.203 University Microfilms International

p.203 University Microfilms International

p.198 US Robotics

p.198 US Robotics

p.242 Vamp

p.242 Vamp

p.179 Vector Electronics

p.179 Vector Electronics

p.242 VR Data Corp

p.242 VR Data Corp

p.241 Wemeco

p.241 Wemeco

p.238 Worldwide Electronics

p.238 Worldwide Electronics

p.184 Xitex

p.184 Xitex

p.185 Xitex

p.185 Xitex