Homebrew Computer Club

Total Page:16

File Type:pdf, Size:1020Kb

Homebrew Computer Club Homebrew Computer Club Robert Reiling,Editor □ Post Office Box 626, Mountain View, CA 94042Joel □ Miller, Staff Writer Typesetting, graphics and editorial services donatedLaurel by Publications,17235 Laurel Rd., Los Gatos, CA 95030 (408) 353-3609 ver, Canada V6J 2G9, telephone (604) 738-9341 for RANDOM DATA By Robert Reiling information on the location. Did you know that Mini Micro Mart publishes a newsletter? They do, and you will probably find it in­ teresting. Write for a copy to Maury Goldberg, Mini You will want to be at the next Club meeting Nov.Micro Mart, 1618 James Street, Syracuse, N.Y. 13203. 12, 1976. A representitive of Anderson Jacobson, Inc.Tell him you learned about the newsletter in the will be on hand to discuss interfacing of Selectric ter­ Homebrew Computer Club Newsletter. minals. This should really be interesting for hard copy. The U.S. Postal System managed to lose some of And...at the same meeting Marty Spergel, M&R the items scheduled for the Bulletin Board this month. Enterprises will turn on the Astral 2000. You will see, I sent several items to Joel at Laurel Publications and, according to Marty, a demonstration of Astral 2000 this time, did not keep a copy. Recovery is therefore BASIC, the most powerful package ever implemented impossible for me. Please send in your items again for in a microcomputer. A unique feature of Astral 2000next month’s Newsletter. □ BASIC is user selectable precision in the floating point package. You BASIC fans should look this sys­ tem over. ^ THE COMPLETE Microcomputer user and hardware buffs will want AND UTTER IDIOT’S GUIDE to attend the S-100 System symposium, 1 to 4 p.m., TO COMPUTER PROGRAMMING Nov. 20, 1976 at Diablo Valley Jr. College. The S-100 oy ¡\ewettm w I is, of course, the Altair, IMSAI, etc. bus system. The bus, its viability for commercial applications, improve­ The First Thing About Computers ments and products employing the bus arrangement will be discussed by prominent authorities including The first thing you probably would like to know Harry Garland, vice Chairman Stanford Electrical Engi­ about computers is, “How do you get information into neering Department.; George Morrow, consultant ex­and out of them?” The answer is, generally, eight bits perienced in S-100 design and Lee Felsenstein, moder­ at a time. There are many diffferent devices that have ator of Homebrew Computer Club Meeting and an ex­been either specifically designed to be used with a perienced hardware designer. Jim Warren, Editor Dr.of computer or they have been adapted to either talk to, Dobbs Journal, will participate along with manufac­ or listen to a computer. There are two common ways turers of S-100 systems in this symposium. A fee ofto talk to a computer: serial and parallel. If you think $5.00 will be charged for admission. about the information as only going in one direction Micro Computer News, a digest translated from for purposes of this discussion it sorts out as follows: Japanese, describes the activities of Japan’s first micro­ Serial transfer requires a two wire circuit that is computer club. Nine symposiums are scheduled duringeither connected or disconnected (make or break/mark October and November, each one covering a differentor space/on or off). It requires that both the transmit­ manufacturer’s microcomputer. Both Japanese andting and the receiving device can agree on how fast the American products are featured. Visitors to Japan maytransmission is taking place (i.e. the Baud rate). Baud contact the club at this address: rate is ten times the number of bytes being transferred Japan Microcomputer Club per second, and is simply a timing convention so every­ The 1st Ohkura Building, 4F thing is talking to everything else at the same rate. 2-1 Nihonbashi, Chuo-ku Serial transfer generally uses a big chip called a Tokyo,Japan “UART” (Universal Asynchronous Receiver/ Transmit­ The first hobbyist club in British Columbia, Canada ter) which means that once synchronized with the data is in the process of forming. At the first meeting Sept.stream it can either receive or transmit. Tho UART 8, 1976 a total of 19 people attended. Future meetingstakes the agreed upon Baud rate and divides it by some will be held the first Wednesday of each month. Con­number (say 16) and sets its own counter. It looks at tact Karl Brachhaus, 203-1625 W. 13th Ave., Vancou­ the incoming line and takes 16 looks at the line per bit, 1 HCCNewsletter/Vol. 2, Issue 10/October 29, 1976 decides what it probably is and stores what it thinks it This is necessary because there may be a previous probably was. Since it has to know when the bytecharacter that the UART is working on and may not begins and ends, it requires some kind of signal thatbe done with. Then: there is going to be a byte coming. The bit devoted to telling it to start is called the “start bit” and it is LDA CHAR GET THE CHARACTER IN always a disconnect/break/off so that when the line REGISTER A circuit breaks it begins to take its 16 samples of each OUT DATA PUT IT OUT TO THE DEVICE of the incoming bits, making up its mind whether the bit was a zero or a one. Now counting the start bit we The UART begins to transmit by breaking the line have: and counting to 16. Then it either makes or breaks the line, depending on whether the bit was zero or one. /ST ART/D0/D1 /D2/D3/D4/D5/D6/D7/ Then it counts to 16. Then it gets the next bit and so on until it has completed 16 counts for D7. Then it And only one more thing is required: a stop bit, whichholds the line in a connect/make/mark condition for is always a connect/make/on circuit condition. Differ­16 times the predetermined value of the stop bit. ent devices require different lengths of time for the Now as you can see, we have created a line condi­ stop bit. Some take 1, someIV2 and some take 2. So tion that is virtually identical to the incoming message. the serial line is divided into the following stream: Parallel Data Transmission /START/ D0/D1 /D2/D3/D4/D5/D6/D7/STOP/ Since Samuel F. B. Morse and others who devel­ Once the UART decides that the stop bit is there, oped the first data transmission devices were terribly it indicates that it has the whole byte by signallingshort of wire and bytes hadn’t been invented yet, they “input is ready.” This flag is variously called “DAV”never thought of sending eight bits at a time. Then, on (data available), “RDA”(receiver data available) or Aug. 19, 1917, Octavius Parallel invented the line using something like it. This signal indicates the status of theeight wires. It was many years later that the technique UART and is always available to any one who asks thefound practical use with the addition of two more UART what it is doing. Since a UART can be used as wires. Their names are: either input or output, other status is also reported when requested, and we’ll get to that in a minute. 1. DO Data Bit Zero Now the incoming circuit has sent the data stream 2. D1 Data Bit One 3. D2 Data Bit Two to the UART, and it has decided on what the eight bits 4. D3 Data Bit Three were in the manner just described. Now the eight bits 5. D4 Data Bit Four received are sitting in a special register in the UART 6. D5 Data Bit Five and the DAV/RDA flag is set. Now if and only if you 7. D6 Data Bit Six 8. D7 Data Bit Seven ask for the UART’s status it will tell you that it is 9. TYG There You Go ready with the input. In code it looks like: 10. IGI I Got It CHARIN IN STATUS GET UART STATUS ANI DAV ERASE ALL BUT DAV BIT Wires 9 and 10 are called “handshake” wires and JZ CHARIN LOOP UNTIL IT COMES IN T Y G signals the receiving device that all 8 bits are now ready to read in parallel. When the receiving device has The computer wants to have the data presented topulled the 8 bits in, it signals back IGI. So parallel its data lines eight bits at a time, and the UART is transfer occurs as fast as the two devices can get the 8 capable of emptying its special register out onto thebits and signal each other that the other has done its data line eight bits at a time so the next bunch of codething. looks like: The code is almost the same, but it looks like: GETCHR IN DATA GET CHARACTER FROM UART RET RETURN WITH CHARACTER PAROUT OUT CHAN1 PUT CONTENTS OF A ON PARALLEL IN REGISTER A OUTPUT PORT MVI A.TYG GET THE FLAG Serial Transmission OUT CHAN2 PUT TYG ON HANDSHAKE LINE GOTIT IN CHAN2 GET THE HANDSHAKE LINE Now that we know what the byte looks like ANI IGI ERASE ALL OTHER BITS JZ GOTIT LOOP UNTIL HE GETS IT coming in, it is easy to figure out what the UART XRA A CLEAR THE FLAG does when it has to put a character out to some device. OUT CHAN2 The computer asks for the UART status and waits until the UART is ready to take the byte. The code is: Please note that these examples of code are not exact examples of how to set up your own input and CHAROUTIN STATUS GET THE UART STATUS output, but are instead only general outlines of the ANI TBE ERASE ALL BUT THE TRANS­ MITTER BUFFER EMPTY BIT activities necessary.
Recommended publications
  • Cromemco 3K Control Basic Instruction Manual 023-0023 197904
    l•• CROMEMCO 3K CONTROL BASIC INSTRUCTION MANUAL J (Models MCB-216 & CB-308) \":'f,_'~", ~,-:- \ 1I q q .'.':&...•• q~"'!'-- - ~.' q..~¥_..../ CROMEMCO; INC. q 280 Berna rd'o Avenue Mountain View, CA 94043 >""1 ;~ Part No. 023-0023 April 1979 ~r Copyright © 1977, 1979 By CROMEMCO, INC. I' _ All Rights Reserved ...i· ... I'-. •I r This manual was produced in its entirety with the Cromemco Word ( Processing System and was printed on a Cromemco 3355 P r in t e r wit h pro po r t ion a 1 I spacing. I ,I I I I I I I I 1 ~~ J Table of Contents I Section 1 1 Introduct ion . ....... 1 2 Getting Started with Control Basic 3 1 2.1 Installing Control Basic in Your System ••• 3 2.2 Entering programs from the Console Device 3 2.3 Entering or Saving Programs l with Other Devices •••••• 4 3 Elements of the Control Basic Language 6 1 3.1 Numbers and Constants • •••• 6 3.2 Variables •••• •• • ••• 6 3.3 Functions •••••••• ••• 7 .4 3.4 Arithmetic and Compare Operators 8 3.5 Expressions • •• ••• 9 4 Control Basic Syntax 10 4.1 Control Basic General Syntax •••• 10 4.2 Abbreviations and Summary of Commands 12 4.3 Memory Organization of Control Basic 14 .1 5 Control Basic Commands and Statements 16 5.1 Assignment Commands •••••• 16 5.1.1 LET Command 16 5.1.2 PUT Command ••••••••• 16 1 5.2 Control Commands 18 5.2.1 IF Command ••••••• 18 5.2.2 GOTO Command •••••••••••• 18 .1 5.2.3 FOR Command.
    [Show full text]
  • Programming Manual Version 2.0
    www.tinybasic.de programming manual version 2.0 TinyBasic Programming Manual Version 2.0 April 2008 altenburg © 2006-2008 by U. Altenburg CHAPTER 1 Introduction.....................................................8 EDITOR, COMPILER, DOWNLOAD, CONSOLE, SCOPE CHAPTER 2 Preprocessor……….........................................12 #TARGET, #INCLUDE, #DEFINE, #UNDEF, #IFDEF, #IFNDEF, #ELSE, #ENDIF CHAPTER 3 Variables and Types.......................................14 CHAR, BYTE, WORD, INTEGER, LONG, FLOAT, DATA, READ, RESTORE, LOAD, STORE, INC, DEC CHAPTER 4 Maths and Expressions..................................19 +, -, *, /, <, >, <=, >=, <>, <<, >>, (), [], NOT, AND, OR, XOR, MOD CHAPTER 5 Control Flow...................................................22 IF, THEN, ELSE, ELSIF, ENDIF, DO, LOOP, FOR, NEXT, WHILE, WEND, EXIT, ON, GOTO, GOSUB, RETURN, WAIT, PAUSE TinyBasic Programming www.tinybasic.de 5 CHAPTER 6 Functions.......................................................28 LO, HI, MIN, MAX, LEN, POS, VAL, PI, SIN, COS, TAN, ATN, DEG, RAD, SQR, EXP, LOG, POW, ABS, INT, ROUND, POINT, PEEK, EOF CHAPTER 7 Input and Output...........................................33 PUT, GET, PRINT, INPUT, OPEN, CLOSE, FLUSH, FIND, INITGSM, SENDSMS, RECVSMS, ERR, CR, NL, CHR, HEX, SPC, TAB, USING CHAPTER 8 Date and Time................................................40 SETCLOCK, DATE, TIME, HOUR, MINUTE, SECOND, DAY, MONTH, YEAR CHAPTER 9 Displays and Graphics...................................42 SETDISPLAY, SETSYMBOL, CLS, FONT, COLOR, PLOT, MOVE, DRAW, FRAME,
    [Show full text]
  • Learning to Code
    PART ILEARNING TO CODE How Important is Programming? “To understand computers is to know about programming. The world is divided… into people who have written a program and people who have not.” Ted Nelson, Computer Lib/Dream Machines (1974) How important is it for you to learn to program a computer? Since the introduction of the first digital electronic computers in the 1940s, people have answered this question in surprisingly different ways. During the first wave of commercial computing—in the 1950s and 1960s, when 1large and expensive mainframe computers filled entire rooms—the standard advice was that only a limited number of specialists would be needed to program com- puters using simple input devices like switches, punched cards, and paper tape. Even during the so-called “golden age” of corporate computing in America—the mid- to late 1960s—it was still unclear how many programming technicians would be needed to support the rapid computerization of the nation’s business, military, and commercial operations. For a while, some experts thought that well-designed computer systems might eventually program themselves, requiring only a handful of attentive managers to keep an eye on the machines. By the late 1970s and early 1980s, however, the rapid emergence of personal computers (PCs), and continuing shortages of computer professionals, shifted popular thinking on the issue. When consumers began to adopt low-priced PCs like the Apple II (1977), the IBM PC (1981), and the Commodore 64 (1982) by the millions, it seemed obvious that ground-breaking changes were afoot. The “PC Revolution” opened up new frontiers, employed tens of thousands of people, and (according to some enthusiasts) demanded new approaches to computer literacy.
    [Show full text]
  • CP/M-80 Kaypro
    $3.00 June-July 1985 . No. 24 TABLE OF CONTENTS C'ing Into Turbo Pascal ....................................... 4 Soldering: The First Steps. .. 36 Eight Inch Drives On The Kaypro .............................. 38 Kaypro BIOS Patch. .. 40 Alternative Power Supply For The Kaypro . .. 42 48 Lines On A BBI ........ .. 44 Adding An 8" SSSD Drive To A Morrow MD-2 ................... 50 Review: The Ztime-I .......................................... 55 BDOS Vectors (Mucking Around Inside CP1M) ................. 62 The Pascal Runoff 77 Regular Features The S-100 Bus 9 Technical Tips ........... 70 In The Public Domain... .. 13 Culture Corner. .. 76 C'ing Clearly ............ 16 The Xerox 820 Column ... 19 The Slicer Column ........ 24 Future Tense The KayproColumn ..... 33 Tidbits. .. .. 79 Pascal Procedures ........ 57 68000 Vrs. 80X86 .. ... 83 FORTH words 61 MSX In The USA . .. 84 On Your Own ........... 68 The Last Page ............ 88 NEW LOWER PRICES! NOW IN "UNKIT"* FORM TOO! "BIG BOARD II" 4 MHz Z80·A SINGLE BOARD COMPUTER WITH "SASI" HARD·DISK INTERFACE $795 ASSEMBLED & TESTED $545 "UNKIT"* $245 PC BOARD WITH 16 PARTS Jim Ferguson, the designer of the "Big Board" distributed by Digital SIZE: 8.75" X 15.5" Research Computers, has produced a stunning new computer that POWER: +5V @ 3A, +-12V @ 0.1A Cal-Tex Computers has been shipping for a year. Called "Big Board II", it has the following features: • "SASI" Interface for Winchester Disks Our "Big Board II" implements the Host portion of the "Shugart Associates Systems • 4 MHz Z80-A CPU and Peripheral Chips Interface." Adding a Winchester disk drive is no harder than attaching a floppy-disk The new Ferguson computer runs at 4 MHz.
    [Show full text]
  • Evolution of the Major Programming Languages
    COS 301 Programming Languages Evolution of the Major Programming Languages UMaine School of Computing and Information Science COS 301 - 2018 Topics Zuse’s Plankalkül Minimal Hardware Programming: Pseudocodes The IBM 704 and Fortran Functional Programming: LISP ALGOL 60 COBOL BASIC PL/I APL and SNOBOL SIMULA 67 Orthogonal Design: ALGOL 68 UMaine School of Computing and Information Science COS 301 - 2018 Topics (continued) Some Early Descendants of the ALGOLs Prolog Ada Object-Oriented Programming: Smalltalk Combining Imperative and Object-Oriented Features: C++ Imperative-Based Object-Oriented Language: Java Scripting Languages A C-Based Language for the New Millennium: C# Markup/Programming Hybrid Languages UMaine School of Computing and Information Science COS 301 - 2018 Genealogy of Common Languages UMaine School of Computing and Information Science COS 301 - 2018 Alternate View UMaine School of Computing and Information Science COS 301 - 2018 Zuse’s Plankalkül • Designed in 1945 • For computers based on electromechanical relays • Not published until 1972, implemented in 2000 [Rojas et al.] • Advanced data structures: – Two’s complement integers, floating point with hidden bit, arrays, records – Basic data type: arrays, tuples of arrays • Included algorithms for playing chess • Odd: 2D language • Functions, but no recursion • Loops (“while”) and guarded conditionals [Dijkstra, 1975] UMaine School of Computing and Information Science COS 301 - 2018 Plankalkül Syntax • 3 lines for a statement: – Operation – Subscripts – Types • An assignment
    [Show full text]
  • Personal Computing
    Personal Computing Thomas J. Bergin ©Computer History Museum American University Recap: Context • By 1977, there was a fairly robust but fragmented hobbyist-oriented microcomputer industry: – Micro Instrumentation Telemetry Systems (MITS) – Processor Technology – Cromemco – MicroStuf – Kentucky Fried Computers • Two things were needed for the personal computer revolution: 1) a way to store and retrieve data, and 2) a programming language in which to write applications. Homebrew Computer Club • March 5, 1975: the Amateur Computer Users Group (Lee Felsenstein, Bob Marsh, Steve Dompier, BobAlbrecht and 27 others) met in Gordon French’s garage, Menlo Park, CA • 3rd meeting drew several hundred people and was moved to the Coleman mansion • Stanford Linear Accelerator Center’s auditorium – Steve Wozniak shows off his single board computer – Steve Jobs attends meetings Homebrew-ed • 21 companies formed: – Apcose Apple – Cromemco Morrow – North Star Osborne • West Coast Computer Faire • Byte magazine, September 1975 • Byte Shop Both: images.google.com And then there was Traf-O-Data • October 28, 1955: William H. Gates III born – father: attorney mother: schoolteacher • Lakeside School: Lakeside Programming Group – Mothers Club: access to time-shared system at GE – Students hired by local firm to debug software – First computer program: Tic-Tac-Toe (age 13) – Traf-O-Data to sell traffic mgt. software (age 16) • 1973, Bill Gates enrolls at Harvard in pre-law. • Paul Allen is in his second year. January 1975, Popular Electronics: Altair • Allen shows
    [Show full text]
  • Po Box 5487, Berkeley, Ca 94705 (415)
    VOLUME 1, NUMBER 4, OCTOBER 1984 AN INTERNATIONAL NEWSLETTER FOR USERS OF MORROW'S COMPUTERS P.O. BOX 5487, BERKELEY, CA 94705 (415) 654-3798 • If you thought you couldn't afford hard disk performance, think again. • The MDS-E hard disk Micro Decision computer with 128K RAM • Seagate Sl)t" Hard Disk with S.4M bytes formatted (Second hard disk can be added) • 384K floppy disk backup. Superfast CP/M 3.0 operating system (compatible with most CP/M 2.2 software) • NewWord word processor. Correct-it spelling checker • New tilt & swivel monitor. Low profile keyboard. Morrow does it again. At $1999, this special introductory offer shatters the price barrier for hard disk computer systems • Call (800) 521-3493 (in California (408) 980-7462) for a dealer near you. Or write to Morrow, 600 McCormick Street, San Leandro, California 94577. CONTENTS EDITORIAL EXCHANGE Edi torial. ••••••••• 2 Letters to the Editor•• 6 COLUMNS The Can File •••• • Ed Niehaus 10 David's Q & A Colurm •• Dave Block 12 Fran The Mailbox ••• •• Stan Ahal t 14 MORROW USERS GROUPS Lost & Found Department ••••• •• Clarence Heier 18 Cleo .............. •• Lionel Johnston • 18 News About MJrrow Users Groups • •• Clarence Heier 19 THE CURIOUS NOVICE'S EXPERIENCE INSIGHT: Spreadsheet Calculators, Part I •• Art Zerrx:>n • 22 Manuals .. ................ •• Milton Levison 25 How To Tell \\hat MD You Have ••••• •• Brian Leyton 26 About Surge and Spike Protectors •••••••• ••• Jerry Sheperd 27 I Thought It Would Never Happen to Me •••• •• Rick Goul ian 28 Never Too Old to Start with a MOrrow • Herb Kahler • 30 WORDSTAR AND NEWWORD MOre Printing and Editing Concurrently with WordStar • Nick Mills •••• 33 Brightening Your Day with NeWWord •••••••••• Bill Steele 35 Progr~ing Your Function Keys with NeWWord ••••• Bill Steele.
    [Show full text]
  • History of Micro-Computers
    M•I•C•R•O P•R•O•C•E•S•S•O•R E•V•O•L•U•T•I.O•N Reprinted by permission from BYTE, September 1985.. a McGraw-Hill Inc. publication. Prices quoted are in US S. EVOLUTION OF THE MICROPROCESSOR An informal history BY MARK GARETZ Author's note: The evolution of were many other applica- the microprocessor has followed tions for the new memory a complex and twisted path. To chip, which was signifi- those of you who were actually cantly larger than any that involved in some of the follow- had been produced ing history, 1 apologize if my before. version is not exactly like yours. About this time, the The opinions expressed in this summer of 1969, Intel was article are my own and may or approached by the may not represent reality as Japanese calculator manu- someone else perceives it. facturer Busicom to pro- duce a set of custom chips THE TRANSISTOR, devel- designed by Busicom oped at Bell Laboratories engineers for the Jap- in 1947, was designed to anese company's new line replace the vacuum tube, of calculators. The to switch electronic sig- calculators would have nals on and off. (Al- several chips, each of though, at the time, which would contain 3000 vacuum tubes were used to 5000 transistors. mainly as amplifiers, they Intel designer Marcian were also used as (led) Hoff was assigned to switches.) The advent of assist the team of Busi- the transistor made possi- com engineers that had ble a digital computer that taken up residence at didn't require an entire Intel.
    [Show full text]
  • AUG 7 1981 Agricultural Economics Library
    UNIVERSITY OF CALIFORNIA DAVIS AUG 7 1981 Agricultural Economics Library Our Experience With Choosing and Using Microcomputers in California By Ken tf:::son & Gordon Rowe Invited Paper, Western Agricultural Economic Association July 19-21, 1981 Olson an.cl Rowe are Economists with Cooperative Extension, University of California, stationed at Davis and Berkeley, respectively. Our Experience With Choosing and Using Microcomputers in California In this paper we will discuss our experiences with microcomputers. First, a discussion of our considerations in selecting hardware and software. Second, a discussion of our current uses of the microcomputer and our future plans. Our experience using computers in California goes back to the use of IBM's 701, their first computer at Berkeley in the early 50's. Since then we have seen growth of computer facilities at the various campuses and in depart­ ments. Cooperative Extension in California has shared in the use of computers with ARE at Berkeley since 1955 and purchased a mini in 1975 for ADP and applied research at Berkeley. We have seen the development and implementation of a vast amount of computer technology since our early days. This has lead us to microcomputer applications which we began in 1979. A Cromemco 22-D (64k and 2 mini drives) with TI R0-810 printer and SOROC 120 CRT as peripherals. This initial system has been expanded to include a Micro B terminal with all its options including an 8085A processor, Persci quad capacity 8" drives, a 26 megabyte hard disk system from Morrow and telecommuni­ cations hardware including a DC Hayes micro Modem board and more recently Cromemco's I/0 processor and quadart board.
    [Show full text]
  • 198412 Byte Magazine December 1984
    DECEMBER 1984 VOL. 9, NO. 13 $3.50 IN UNITED STATES $4.95 in CANADA / £2.10 in U.K. A McGRAW-HILL PUBLICATION 0360-5280 ypl.^C LA-S DIRECT THE SMALL SYSTEMS JOURNAL SoftCard °1 squeezes the,,., Alce out Microsoft`' Premium SoftCard' Ile FORTRAN-80, COBOL and BASIC is the high-performance CP/M® Compiler. board that really juices the Apple' Ile. It also has a new low price. Hard facts on SoftCard. Juicing up the performance of It has a high speed (6MHz) Z-80 computers is nothing new for us. that runs CP/M up to three times We invented the SoftCard and make faster than lesser boards. Plus 64K versions for the entire Apple family. memory and 80-column display that We wrote Apple soft for the Apple II. fits the He auxiliary slot and acts like MICROSOFT In fact, our Apple's own Extended 80-column The High Performance Software BASIC is the Card. So it works with CP/M, Apple language spoken by nine out of ten DOS and ProDOS programs, too. microcomputers worldwide. Microsoft BASIC is built-in, so it's Get the Apple juicer from compatible with more Apple CP/M Washington. Call 800-426-9400 software than any other board on (in Washington State call 206-828- the market: Thousands of the juiciest 8088) for the name of your nearest business programs including Microsoft dealer. dBase II, WordStar' and sophis- ticated Microsoft languages like SoftCard is a trademark and Microsoft is a registered trademark of Microsoft Corporation. Apple is a registered trademark of Apple Computer, Inc.
    [Show full text]
  • Dr. Dobb's Journal of $1.So COMPUTER Calisthenics & Orthodontia Running Light Without Overbyte June/July, 1976 Box 310, Menlo Park CA 94025 Volume 1, Number 6
    dr. dobb's journal of $1.so COMPUTER Calisthenics & Orthodontia Running Light Without Overbyte June/July, 1976 Box 310, Menlo Park CA 94025 Volume 1, Number 6 A REFERENCE JOURNAL FOR USERS OF HOME COMPUTERS .CONSUMER COMMENTS ·fraUie for Pittman's 6800 Tiny BASIC [letter & reply] 4 Denver's Digital Group Kit Draws Praise [letter] 5 Good Reports & Plaudits for MOS Technology[letter/note] 5 Accentuate the Software; Eliminate the Games [letter/reply] 6 Short on Length, hut Long on Quality [letter] 6 A Novice Constructs an IMSAL S. A. Cochran, Jr. 7 Don't Underestimate BASIC fletter] 40 an attorney builds his first computer BASIC Complaint & Macro Message [letter & reply] 40 FCC Petition on ANSCII Transmission by Hams 42 Dennis Allison reply points out BASIC limitations SOFTWARE A Bootstrap for the 8080, Lichen Wang 8 Byte-Saving Programming Tricks for the 8080, Tom Pittman 9 An Exercise for Novice Translator Implementors, Bill Thompson 11 A Classy 8080 Text Editor, similar to a PDP-9 Editor, F. J. Greeb 13 includes general comments, user documentation & extensively annotated source code Tiny Trek for Mueller's MINOL, Erik Mueller 37 Button, Button Game in 8080 Machine Code, Ron Santore 38 CORRECTIONS & IMPROVEMENTS Errors in & Improvements for Texas Tiny BASIC (TBX), Charles Skeldon 3'4 Errata & Additions to Wang's Palo Alto Tiny BAS1C, Lichen Wang 35 MinErrata for MINOL, plus Tiny Trek, Erik Mueller 36 VIDEO OUTPUT 48 Lines of 64 Characters on a TV for $499. 95, Video· Terminal Technology 27 512-Character Video RAM from Canada, Matrox Electronic Systems 27 Variable Character Spacing in Video Displays, Jim Day 28 TVT-11 Mods to Get 64 Characters per Line, David Valliere .
    [Show full text]
  • A Review of Federal Agency Experiences NATIONAL BUREAU of STANDARDS
    NAT'L INST. OF STAND & TECH NB3 Reference Publi - cations AlllQb DMDSSB of Commerce . Science National Bureau and Technology of Standards NBS Special Publication 500-102 Microcomputers: A Review of Federal Agency Experiences NATIONAL BUREAU OF STANDARDS The National Bureau of Standards' was established by an act ot Congress on March 3, 1901. The Bureau's overall goal is to strengthen and advance the Nation's science and technology and facilitate their effective application for public benefit. To this end, the Bureau conducts research and provides: (1) a basis for the Nation's physical measurement system, (2) scientific and technological services for industry and government, (3) a technical basis for equity in trade, and (4) technical services to promote public safety. The Bureau's technical work is per- formed by the National Measurement Laboratory, the National Engineering Laboratory, and the Institute for Computer Sciences and Technology. THE NATIONAL MEASUREMENT LABORATORY provides the national system of physical and chemical and materials measurement; coordinates the system with measurement systems of other nations and furnishes essential services leading to accurate and uniform physical and chemical measurement throughout the Nation's scientific community, industry, and commerce; conducts materials research leading to improved methods of measurement, standards, and data on the properties of materials needed by industry, commerce, educational institutions, and Government; provides advisory and research services to other Government
    [Show full text]