1977 3.08 1979

Vol.3 n°8 august 1978

Vol.3 n°8 august 1978

(byte_1978_08.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.24
p.24

What are readers' experiences with building actual robotic mechanisms? Stephen A Allen and Anthony J Rossetti's commentary On Building a Light-Seeking Robot Mechanism describes their work in this area on an undergraduate engineering project. An on board computer helps their robot decide what action to take when avoiding obstacles between it and a light source. page 24

p.50
p.50

Until now microprocessor users had the choice of using either an 8 bit or a 16 bit processor. With the advent of the 6809, Z-8000 and 8086, we now have available a hybrid machine with both 8 and 16 bit capabilities. This may have an effect on how language are written on the processors. Charles H Forsyth and Randall J Howard take a look at this in Compilation and Pascal on the New Microprocessors. page 50

p.64
p.64

Do you need to perform extensive mathematical calculations, but fret over the time needed to write, debug and use floating point operations and transcendental functions? The new National Semiconductor MM57109 processor will help you with this problem. Turn to The Number Crunching Processor by Peter Nelson for details on how to interface an MM57109 with an 8080 system, and a review of this unique processor. page 64

p.78
p.78

Pascal is the fastest growing new computer language. Few languages have the support from the typical university computer science department that Pascal has. To find out more about this fascinating language read Steven R Alpert's article, Pascal, a Structurally Strong Language. page 78

p.90
p.90

A 179 year old android that can draw pictures and write poetry? It may sound like science fiction, but The Franklin Institute's Charles F Penniman reveals all in Philadelphia's 179 Year Old Android. page 90

p.96
p.96

This month we continue Dr James Williams' 3 part series on Antique Mechanical Computers with Part 2: 18th and 19th Century Mechanical Marvels . Read about Jacquet-Droz's incredible writing and drawing automaton that contains the equivalent of three quarters of a million bits of read only memory and can draw intricate pictures and transcribe poetry. page 96

p.110
p.110

Using a structured language such as Pascal helps the programmer easily organize the logic of a program. Often, it is not necessary to write a logic diagram for the program. To this end, David Mundie compares a well written Pascal program to a Warnier-Orr logic diagram in his article In Praise of Pascal. page 110

p.122
p.122

Business applications for personal computers are more and more in evidence these days. Pascal lends itself well to business applications with the addition of some special features described by Ken Bowles in Pascal versus COBOL. page 122

p.143
p.143

One of the newest developments in software is structured programming. Many features of the technique have been described, but often the actual procedure for constructing a structured program is not mentioned. Chip Weems describes the steps involved in Designing a Structured Program. page 143

p.156
p.156

Light pens are one way to improve the user-computer interface, but there's an even more direct way: a noncontact scanning digitizer. Simply touch the screen of your video display to enter information! Steve Ciarcia shows you how in Let Your Fingers Do the Talking: Add a Noncontact Touch Scanner to Your Video Display. page 156

p.166
p.166

If you like to gamble, but don't want to wait for legalized gambling in your state, try JACPOT. Author Edwin Hastings has written a straightforward BASIC simulation of a slot machine. Now you can gamble (for fun only, of course) to your heart's content without depleting your bank account. You can lose everything and then turn around and lose it again! page 166

p.168
p.168

Pascal is an exciting language that can help you program more efficiently. It was developed in 1969 as an extension of the ALGOL family of languages. Author Allan Schwartz compares Pascal to BASIC, a language familiar to many BYTE readers, in Pascal versus BASIC: An Exercise. page 168

p.6 A Vision of an Industry

p.6 A Vision of an Industry

[author : Carl Helmers] #Edito

Extract : «  In mid-March of this year, I finished a trip to the West Coast by having a day long meeting with Ken Bowles and his associates at the University of California, San Diego. The purpose of this meeting was to explore some of the possibilities which arise from the standardization of extensions to Niklaus Wirth's language Pascal, and the equally important implications of the technology of intermediate languages such as the optimized form of "P-code" developed at UCSD.

I came to this meeting with a background of familiarity with the reasons for encouraging highly structured languages such as Pascal. Before starting BYTE, I had been involved with the NASA HAL/S language developed by my employer of the time, Intermetrics Inc of Cambridge MA. I lived and breathed considerations of software reliability, ease of program design and the conceptual economy of a detailed program representation which doubles as the documentation of the algorithm. My personal experiences were with the context of the need to "man rate" the flight software of a contemporary spaceship through the use of high reliability software tools and techniques. These points are made elegantly in a number of books and papers which have been published on the subject to date. [...]  »

TABLE OF CONTENTS

Foreground

Foreground

p.50 COMPILATION AND PASCAL ON THE NEW MICROPROCESSORS

p.50 COMPILATION AND PASCAL ON THE NEW MICROPROCESSORS

[theme : Tutorial] [author : Forsyth-Howard] #Programming #Pascal #Listing #Assembly #Book

Extract : «  We are concerned with the use of high level languages, and in particular Pascal, on microcomputer systems. We are most interested in the use of such languages for what is termed, on larger computer systems, systems programming. This includes writing code to drive floppy disks, interpreters for APL or BASIC, or all those bits of code that people have until now written in assembler, and which in some way make their microcomputer systems friendly. [...]  »

p.78 PASCAL: A Structurally Strong Language

p.78 PASCAL: A Structurally Strong Language

[theme : Languages] [author : Alpert] #Programming #Pascal #Listing #Book

Extract : «  People should be able to communicate their ideas to a computer in a language that people understand; not simply in a language they know. Additionally, if the computer can be made to understand the same language easily, all the more reason to consider its use. Such a language is PASCAL. This language, perhaps more than any other common language, is the easiest to understand and more importantly, allows a straightforward presentation of most algorithms. Although many languages also make this claim, few have the overwhelming and energetic support from collegiate computer science departments. Let's consider some of the language features of PASCAL. [...]  »

p.143 DESIGNING STRUCTURED PROGRAMS

p.143 DESIGNING STRUCTURED PROGRAMS

[theme : Programming Techniques] [author : Weems] #Method #Programming #Listing #Pascal #Book

Extract : «  In the early days of the computer industry, the most expensive part of owning a computer was the machine itself. Of all the components in such a machine, the memory bank was the most costly because of the number of parts it contained. Early computer memories were thus small: 16 K bytes was considered large and 64 K bytes could only be found in supercomputers. All of this meant that programs had to take advantage of what little space was available.

On the other hand, programs had to be written to run as quickly as possible in order to make the most efficient use of the large computers. Of course these two goals almost always contradicted each other, which led to the concept of the speed versus space tradeoff. Programmers were prized for the ability to write tricky, efficient code which took advantage of special idiosyncrasies in the machine. Supercoders were in vogue.

Fortunately, hardware evolved and became less expensive. Large memories and high speed became common features of most systems. Suddenly people discovered that speed and space were no longer important. In fact the roles had reversed and hardware had become the least expensive part of owning a computer.

The costliest part of owning a computer today is programming it. With the advent of less expensive hardware, the emphasis has shifted from speed versus space to a new tradeoff: programmer cost versus machine cost. The new goal is to make the most efficient use of a programmer's time, and program efficiency has become less important — it's easier to add more hardware.

There are some important observations that should be made concerning modern programming. First, the majority of the cost involved with a particular program centers on maintenance and revision rather than initial development. For example, an average program may take three working months to write but can have a lifetime of up to ten years or more, during which dozens of changes may be needed. These can easily add up to several years of labor. [...]  »

p.156 LET YOUR FINGERS DO THE TALKING: Add a Noncontact Touch Scanner

p.156 LET YOUR FINGERS DO THE TALKING: Add a Noncontact Touch Scanner

[theme : Hardware] [author : Ciarcia] #Electronic #Listing #BASIC #Display #Book

Extract : «  [...] Ted continued, "Programmers program computers for other programmers! They never think of the user. I drag that terminal to board meetings so we can review marketing figures, and I spend half my time entering 8 digit passwords, hitting escape and control keys to select options, and answering endless quantities of mindless interrogation." Ted was getting a little hot under the collar. "Time is money in those meetings and here in my office. I don't want to spend all day playing true confessor with a computer! Its function is to display information and that's all the interaction I want." [...]  »

Background

Background

p.24 ON BUILDING A LIGHT-SEEKING ROBOT MECHANISM

p.24 ON BUILDING A LIGHT-SEEKING ROBOT MECHANISM

[theme : Robotics Applications] [author : Allen-Rossetti] #Robotics #Electronic #Algorithm

Extract : «  The idea of the Tee Toddler was born during the summer of 1976. We, as two undergraduate engineering students at Rice University in Houston, wanted to design a system using as much applicable electrical engineering as possible which could act on its own intelligence and which could also learn from its mistakes. We wanted to incorporate state of the art electronics and actually develop a piece of working hardware. As a three credit hour course for two semesters we designed and built a small "robot" car, the Tee Toddler.

The car is designed to track toward a shining light. [...]  »

p.64 THE NUMBER CRUNCHING PROCESSOR

p.64 THE NUMBER CRUNCHING PROCESSOR

[theme : Hardware] [author : Nelson] #Microprocessor #Review #Listing #Assembly

Extract : «  National Semiconductor Corporation's MM57109 microprocessor is designed specifically for numeric processing. Called "The Number Cruncher" in their advertising, the MM57109 has an instruction set that includes floating decimal arithmetic, logarithmic and trigonometric functions and other sophisticated features. Although it can be used as a stand alone device with read only and programmable memory, or as the "brain" of a smart instrument, most hobbyists will probably want to use it as a peripheral processor where it will save both money and memory space. [...]  »

p.90 PHILADELPHIA'S 179 YEAR OLD ANDROID

p.90 PHILADELPHIA'S 179 YEAR OLD ANDROID

[theme : History] [author : Penniman] #Robotics #History

Extract : «  Cuckoo clocks, computers and dolls with rolling eyes somehow fascinate us all. The fascination seems to stem from our delight that people can make contraptions which do things by contrivance that are usually done by living men and beasts. But whatever the reason for it, we find animated statues in ancient China and in the temples of classical Greece. In Europe, the clockmakers of the Renaissance often adorned their works with marvelous moving figures. The famous tower clocks of Berne and Messina and the remarkable clock in the Cathedral at Strasbourg are just a few examples.

For us who live toward the beginning of the Electronic Age, it is hard to imagine the excitement that existed in the early years of mechanism. The automaton at the Franklin Institute that writes poems and draws pictures dates from those times. In the same way that they made machines to perform marvelous and delightful things, we program computers and build microprocessors to perform even more amazing feats. It is much the same phenomenon. [...]  »

p.96 ANTIQUE MECHANICAL COMPUTERS, Part 2

p.96 ANTIQUE MECHANICAL COMPUTERS, Part 2

[theme : History] [author : Williams] #Robotics #History

Extract : «  In "Part 1: Early Automata," page 48, July 1978 BYTE, we traced the development of antique mechanical computers up to the middle of the 18th century, and described such devices as Vaucanson's mechanical duck. Now we continue with a discussion of talking, writing and music playing automata of the 18th and 19th centuries. (The discussion is not meant to be an exhaustive one, of course, since that would be beyond the scope of this series.)

Later Automata

Vaucanson's creations blazed across the scene in Europe 240 years ago, casting new light into hitherto dark places by showing what the dedicated mechanician could achieve. But, even after Vaucanson, the way was difficult. 38 years passed before a second flute playing machine was seen, a seated pair of rustics built by Duchamps in 1776 and said to be capable of playing 13 tunes. 109 years after Vaucanson made the original mechanical duck, a mechanician named Rechsteiner, who had restored that original duck, produced and displayed a duck of his own. Rechsteiner's duck was the product of three years of work. It appeared in 1847 and was the last automaton animal of note. [...]  »

p.110 IN PRAISE OF PASCAL

p.110 IN PRAISE OF PASCAL

[theme : Software] [author : Mundie] #Programming #Pascal #Listing #Book

Extract : «  As has been pointed out in these pages before, personal computing will never achieve its full potential as long as our state of the art machines are hobbled down with a language as far from state of the art as BASIC is. Some have argued for designing a special high level language for microprocessors, but I personally fail to see why we don't just implement PASCAL and be done with it. I would like to look briefly at the language itself and try to explain why it seems the logical choice to me.I am an applications programmer with no theoretical interest in computing whatsoever. What I like about PASCAL is not the theory of its design, though that seems sound enough, but rather the fact that it lets me formulate my problems in my own terms. In PASCAL more than in any other language I know, I can remain on the abstract, algorithmic level where, as a human being, I function best. Because of this pragmatic bias, much of what follows will be an informal discussion appealing to the reader's intuitions rather than a technical demonstration. I shall use BASIC for comparative purposes, since it is the tyrant in the field. [...]  »

p.122 PASCAL VERSUS COBOL: Where Pascal Gets Down to Business

p.122 PASCAL VERSUS COBOL: Where Pascal Gets Down to Business

[theme : Software] [author : Bowles] #Programming #Pascal #Listing

Extract : «  With a few important extensions, Pascal can be an extremely powerful tool for writing interactive business application programs on microcomputers and minicomputers. Pascal provides data structuring facilities generally superior to those of COBOL, and its control constructs allow a systematic and modular approach to program design that reduces development effort and improves reliability compared with BASIC or FORTRAN. The extensions needed make it easy to write interactive programs, use random access (floppy) disk files, handle business arithmetic, and recover from error situations. [...]  »

p.166 JACPOT

p.166 JACPOT

[theme : Games] [author : Hastings] #Listing #BASIC #GameChance

Extract : «  Many states are now working to legalize gambling, but why wait for the bureaucratic process when you can start a casino on your own computer (for fun of course) with the JACPOT program. JACPOT is a simulation of a slot machine written in BASIC, with bets limited only by the constraints of your machine. You can lose all your money and then lose it again! [...]  »

p.168 PASCAL VERSUS BASIC: An Exercise

p.168 PASCAL VERSUS BASIC: An Exercise

[theme : Software] [author : Schwartz] #Algorithm #Pascal #BASIC #Listing #Book

(byte_1978_08_p172.jpg)

Extract : «  Pascal is one of the newest high level languages on the personal computing scene. Pascal has been accepted at many universities for several years. It is being used more and more in industry outside of education, and has just recently been introduced in microcomputers. Why is there so much enthusiasm about Pascal?

Pascal is a general purpose language, the product of the long evolution of computer languages. It has a simple but elegant syntax and has been implemented in both large systems (CDC 6000, IBM 360 and 370, Burroughs 6700, etc) and microcomputers (LSI-11,8080, 8085 and Z-80). [...]  »

Nucleus

Nucleus

p.10 Letters

p.10 Letters

p.12 Technical Forum:

p.12 Technical Forum:

A Letter Exchange: Extending S-100 Bus?

And Some Notes by John C McCallum

p.16 About the Cover

p.16 About the Cover

p.46 Languages Forum: A Homebrew Pascal Compiler

p.46 Languages Forum: A Homebrew Pascal Compiler

p.48 Clubs, Newsletters

p.48 Clubs, Newsletters

#Association

p.62 BYTE's Bugs

p.62 BYTE's Bugs

p.89 Consistency - or a Lack Thereof...Notes by C Helmers

p.89 Consistency - or a Lack Thereof...Notes by C Helmers

p.117 Languages Forum: A Proposed Pascal Compiler

p.117 Languages Forum: A Proposed Pascal Compiler

p.118 Event Queue

p.118 Event Queue

p.177 What's New?

p.177 What's New?

p.206 Unclassified Ads

p.206 Unclassified Ads

p.208 BOMB

p.208 BOMB

p.208 Reader Service

p.208 Reader Service

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

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

p.155 AAA Chicago Computer Center

p.155 AAA Chicago Computer Center

p.196 A-A-A-A Computer How's

p.196 A-A-A-A Computer How's

p.107 Administrative Systems

p.107 Administrative Systems

p.114 AJA Software

p.114 AJA Software

p.19 ALTOS Computer Systems

p.19 ALTOS Computer Systems

p.190 American Digital Development

p.190 American Digital Development

p.75 p.133 Anderson Jacobson

p.75 p.133 Anderson Jacobson

p.126 AP Products

p.126 AP Products

p.196 Apparat Inc

p.196 Apparat Inc

p.14 p.15 Apple Computer

p.14 p.15 Apple Computer

p.153 Art-by-Computer

p.153 Art-by-Computer

p.79 Artec Electronics

p.79 Artec Electronics

p.182 ATV Research

p.182 ATV Research

p.180 Atwood Enterprises

p.180 Atwood Enterprises

p.5 Axiom

p.5 Axiom

p.57 Base II

p.57 Base II

p.180 Beckian Enterprises

p.180 Beckian Enterprises

p.182 Bit Basement

p.182 Bit Basement

p.61 p.93 p.95 p.99 p.103 p.111 BITS

p.61 p.93 p.95 p.99 p.103 p.111 BITS

p.89 Bootstrap Enterprises

p.89 Bootstrap Enterprises

p.155 Buss

p.155 Buss

p.145 BYTE Back Issues

p.145 BYTE Back Issues

p.29 BYTE Bound Volumes

p.29 BYTE Bound Volumes

p.144 BYTE Wats Line

p.144 BYTE Wats Line

p.185 California Industrial

p.185 California Industrial

p.135 Canada Systems

p.135 Canada Systems

p.134 Capitol Equipment Brokers

p.134 Capitol Equipment Brokers

p.43 Central Data

p.43 Central Data

p.63 Centronics

p.63 Centronics

p.190 Chrislin Industries

p.190 Chrislin Industries

p.196 Computer Age

p.196 Computer Age

p.204 Computer Components

p.204 Computer Components

p.204 Computer Corner

p.204 Computer Corner

p.124 Computer Enterprises

p.124 Computer Enterprises

p.144 Computer Factory

p.144 Computer Factory

p.49 Computerland

p.49 Computerland

p.190 Computer Mart of MA

p.190 Computer Mart of MA

p.146 Computer Mart of NJ

p.146 Computer Mart of NJ

p.146 Computer Mart of PA

p.146 Computer Mart of PA

p.204 Computer Pantry

p.204 Computer Pantry

p.145 Contract Services Associates

p.145 Contract Services Associates

p.1 p.2 Cromemco

p.1 p.2 Cromemco

p.134 Digital Pathways

p.134 Digital Pathways

p.146 Digital Research (CA)

p.146 Digital Research (CA)

p.187 Digital Research (TX)

p.187 Digital Research (TX)

p.83 Dynabyte

p.83 Dynabyte

p.183 Electrolabs

p.183 Electrolabs

p.158 Electronic Control Technology

p.158 Electronic Control Technology

p.189 Electronic Systems

p.189 Electronic Systems

p.191 Electronics Warehouse

p.191 Electronics Warehouse

p.118 EMM/CMP

p.118 EMM/CMP

p.158 EMM/Semi Inc

p.158 EMM/Semi Inc

p.196 Entelek

p.196 Entelek

p.74 Forethought Products

p.74 Forethought Products

p.190 Functional Automation

p.190 Functional Automation

p.31 GRT Corporation

p.31 GRT Corporation

p.138 p.139 GRT Corporation

p.138 p.139 GRT Corporation

p.182 Hamilton Logic Systems

p.182 Hamilton Logic Systems

p.34 p.35 Hazeltine Corp

p.34 p.35 Hazeltine Corp

p.17 Heath Company

p.17 Heath Company

p.179 Hobby World

p.179 Hobby World

p.196 Home Computer Centre

p.196 Home Computer Centre

p.204 IEE Corporation

p.204 IEE Corporation

p.11 IMSAI

p.11 IMSAI

p.157 Innotronics

p.157 Innotronics

p.131 Integrand

p.131 Integrand

p.193 Integrated Circuits Unlimited

p.193 Integrated Circuits Unlimited

p.157 International Data Sciences

p.157 International Data Sciences

p.98 International Data Systems

p.98 International Data Systems

p.196 J & E Electronics

p.196 J & E Electronics

p.181 Jade Company

p.181 Jade Company

p.194 p.195 Jameco Electronics

p.194 p.195 Jameco Electronics

(p.CIII) Jim-Pak

(p.CIII) Jim-Pak

p.190 Kalin Associates

p.190 Kalin Associates

p.197 LMN Electronics

p.197 LMN Electronics

p.62 Logical Services

p.62 Logical Services

p.182 Manchester Equipment

p.182 Manchester Equipment

p.140 Marinchip Systems

p.140 Marinchip Systems

p.204 Micro-Madness

p.204 Micro-Madness

p.137 Microware

p.137 Microware

p.199 Mikos

p.199 Mikos

p.142 Mini Micro Mart

p.142 Mini Micro Mart

p.149 mpi

p.149 mpi

p.190 National Digital Diagnostic

p.190 National Digital Diagnostic

p.69 National Multiplex

p.69 National Multiplex

p.121 Netronics

p.121 Netronics

p.120 Newman Computer Exchange

p.120 Newman Computer Exchange

p.27 (p.CIV) North Star Computer

p.27 (p.CIV) North Star Computer

p.7 p.127 Northwest Microcomputing Sys

p.7 p.127 Northwest Microcomputing Sys

p.20 Ohio Scientific Instrument

p.20 Ohio Scientific Instrument

p.125 Oliver Advanced Engineering

p.125 Oliver Advanced Engineering

p.81 Osborne & Associates

p.81 Osborne & Associates

p.204 Owens Associates

p.204 Owens Associates

p.135 Pacific Digital

p.135 Pacific Digital

p.199 Pacific Office Systems

p.199 Pacific Office Systems

p.188 Page Digital

p.188 Page Digital

p.105 PAIA Electronics

p.105 PAIA Electronics

p.119 PanaVise

p.119 PanaVise

p.182 PCE Electronics

p.182 PCE Electronics

p.182 Pentech Inc

p.182 Pentech Inc

p.46 PerCom Data

p.46 PerCom Data

p.87 PerSci

p.87 PerSci

p.108 p.109 Pers & Small Business Cmptr Show

p.108 p.109 Pers & Small Business Cmptr Show

p.196 Personal Computing Co

p.196 Personal Computing Co

p.76 p.77 Personal Computing '78

p.76 p.77 Personal Computing '78

p.204 Pet Shack Software House

p.204 Pet Shack Software House

p.196 Pharmassist

p.196 Pharmassist

p.203 Poly Paks

p.203 Poly Paks

p.201 Priority I

p.201 Priority I

p.8 p.9 p.10 p.48 Processor Technology

p.8 p.9 p.10 p.48 Processor Technology

p.55 PRS Corp

p.55 PRS Corp

p.188 Quest Electronics

p.188 Quest Electronics

p.197 Rondure Co

p.197 Rondure Co

p.107 S-100

p.107 S-100

p.39 Scelbi

p.39 Scelbi

p.115 Scelbi/BYTE Primer

p.115 Scelbi/BYTE Primer

p.37 p.59 Scientific Research

p.37 p.59 Scientific Research

p.204 S & D Computer Technology

p.204 S & D Computer Technology

p.100 Seattle Computer Products

p.100 Seattle Computer Products

p.71 Michael Shrayer Software

p.71 Michael Shrayer Software

p.204 Silver Spur

p.204 Silver Spur

p.73 Smoke Signal Broadcasting

p.73 Smoke Signal Broadcasting

p.153 Software Records

p.153 Software Records

p.47 Solid State Music

p.47 Solid State Music

p.207 Solid State Sales

p.207 Solid State Sales

(p.CII) Southwest Technical Products

(p.CII) Southwest Technical Products

p.123 Stirling Bekdorf

p.123 Stirling Bekdorf

p.13 Structured Systems Group

p.13 Structured Systems Group

p.205 Super Surplus Sales

p.205 Super Surplus Sales

p.44 p.45 Synchro Sound

p.44 p.45 Synchro Sound

p.51 Tarbell Electronics

p.51 Tarbell Electronics

p.85 Technical Systems Consultants

p.85 Technical Systems Consultants

p.101 Technico

p.101 Technico

p.53 Teletek

p.53 Teletek

p.182 Transition Enterprises

p.182 Transition Enterprises

p.60 TransNet Corp

p.60 TransNet Corp

p.128 Trenton State College

p.128 Trenton State College

p.205 Tri-Tek

p.205 Tri-Tek

p.125 Ultra Violet Products

p.125 Ultra Violet Products

p.182 US Robotics

p.182 US Robotics

p.129 Video Spectrum Industries

p.129 Video Spectrum Industries

p.182 Vamp

p.182 Vamp

p.183 Wameco

p.183 Wameco

p.111 Whales

p.111 Whales

p.149 Wintek

p.149 Wintek

p.196 Worldwide Electronics

p.196 Worldwide Electronics

p.136 Xitex

p.136 Xitex