M.Nlo Hrk, CA
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
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. -
ALTAIR 8800 CLONE COMPUTER OPERATOR's MANUAL Version
ALTAIR 8800 CLONE COMPUTER OPERATOR’S MANUAL Version 2.3, April 2021 TABLE OF CONTENTS INTRODUCTION ............................................................... 1 PART 1 – ALTAIR 8800 CLONE HARDWARE SPECIFICATIONS ......................... 2 PART 2 – CONFIGURATION MONITOR ............................................. 4 A. Floppy Disk Menu ....................................................... 4 B. PROM Menu .............................................................. 6 C. Serial Port Menu ....................................................... 7 D. Load .BIN or .HEX File ................................................. 9 E. Administration Menu .................................................... 9 PART 3 – TERMINAL EMULATOR ................................................ 14 A. Overview .............................................................. 14 B. TeraTerm Terminal Emulator ............................................ 14 C. Installing TeraTerm ................................................... 14 D. Configuring TeraTerm .................................................. 14 E. Using TeraTerm ........................................................ 15 PART 4 – ALTAIR 8800 DEMONSTRATIONS ....................................... 16 A. Kill-the-Bit Front Panel Game ......................................... 16 B. Loading and Using 4K BASIC from Paper Tape ............................ 18 C. Loading and Using 8K BASIC from Cassette .............................. 21 D. Loading and Using Disk BASIC from Floppy Disk ........................ -
MITS Altair 8800 Computer Systems Brochure
MITS ALTAI 800 A Computer Concept Becomes an ex •ting reality. •••••••••• Contents ••••••••••••••••••••••••••• Introduction •....•.•.•.•••••••••••• 3 Altair Systems .........•........•.. 5 The Ultimate System .......•....•.•. 7 The Possibilities .......•....•....• S User Applications ......•.......•.. 10 Altair Options ..........•..•...•.• ll Processor Description ........••.•. 14 Processor Instructions ............ l5 Questions &Answers ......••....•.• 17 1....................................................... .1 Warranty: 90 days on parts and labor fOf assembled units. 90 days on parts fOf kits. Prices, spec'ifications and delivery subject to change without notice. 6328 LINN, N.E .., P.O. BOX 8636, ALBUQUERQUE, N.M. 87108 505/265-7553 © MITS, Inc. 1974 PRINTED IN U.S:A. .. PIPE DREAM? Not too long ago, the thought of an honest, full-blown, high-quality computer that sells for less than $500 would have been considered a mere pipe dream. Everyone knows that computers are monstrous, box-shaped machines that sell for 10's and 100's of thousands of dollars. Pipe dream or not, MITS, the quality engineering company that pioneered the calcu lator market, has made the Altair 8800 a reality. It is the realization of that day when computers arc accessible to almost anyone who wants one. I The heart (and the secret) of the M ITS Altair 8800 is the Intel 8080 processor chip. Thanks to rapid advances in integrated circuit technology, this one IC chip can now do 3 what once took thousands of electronic components (including 100's of IC's) and miles of wire. Make no mistake about it. The M ITS Altair 8800 is a lot of brain power. Its parallel, 8-bit processor uses a 16-bit address. It has 78 basic machine instructions with variances up to 200 instructions. -
Advanced BASIC VCFE9.Pdf
Advanced BASIC Vintage Computer Festival 9.1 Bill Degnan Course Outline • BASIC Overview • Matricies • BASIC Timing Comparisons 1977 • Micro-Soft vs. Tiny BASIC • Micro-Soft BASIC Breakdown using PEEK BASIC Overview • BASIC has three classes of capabilities: commands, statements, and functions. • Commands “part of the operating system or environment” and manipulate global items, such as programs • Statements are made up of keywords, variables, constants, operators, and functions • Functions - A user-defined and library functions. BASIC Overview • Constants. BASIC programs are made up of statements that contain keywords, variables, operators, and constants • Numeric constants (Floating point and Integer) - Each BASIC version handles numeric constants differently. • Character String constants - signaled by a quote (") • Variables - "names" that may take on different values during a problem. - vintage versions of BASIC required variables to start with a letter. Matricies (1966 Dartmouth BASIC) • A matrix is simply a rectangular array of numbers • An array is a set of numbers arranged in rows and columns • A matrix may also consist of a single row or a single column, also called “row vectors” (lists) and “column vectors”. 10 REM MATRICIES USING DARTMOUTH BASIC 20 DIM S(2,2) 30 MAT READ S ... 240 DATA 30, 50 245 DATA 40, 25 250 FOR K=1 TO 2 260 PRINT S(K,1) 270 NEXT K RUN [What would be the output??] Matricies (Digital PDP 11 BASIC) 10 DIM A(2,3) 20 FOR I=0 TO 2 30 FOR J=0 TO 3: LET A(I,J) = 0 40 NEXT J 50 NEXT I 60 FOR I = 0 TO 2: LET A(I,0) = I 70 FOR J = 0 TO 3: LET A(0,J) = J 80 PRINT A(I,J); 90 NEXT J 100 PRINT 110 NEXT I 120 END RUN 0 1 2 3 1 0 0 0 2 0 0 0 STOP AT LINE 120 READY What’s different? The Knight’s Tour • Chess is played on a square board having 64 smaller squares, eight on a side. -
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 -
Evoluzione Degli Strumenti Di Sviluppo Microsoft
Evoluzione degli strumenti di sviluppo Microsoft Massimo Bonanni Senior Developer @ THAOS s.r.l. [email protected] http://codetailor.blogspot.com http://twitter.com/massimobonanni Agenda • Gli IDE questi sconosciuti • All’inizio era BASIC! • Anni ‘70-’80: compilatori e poco più • Anni ’90: frammentazione degli strumenti di sviluppo • Ultimi 10 anni: l’ecosistema .NET • Conclusioni IDE, questo sconosciuto • IDE è l’acronimo di Integrated Development Environment; • Un insieme di applicazioni (di solito abbastanza complesso) a supporto di chi produce software; • Generalmente consiste di: – Un editor di codice sorgente – Un compilatore e/o interprete – Un debugger – Un tool di building – Vari tools a supporto IDE, questo sconosciuto • Gli IDE possono essere multi-linguaggio o singolo linguaggio; • Alcuni IDE sono espandibili tramite plug-in o estensioni; • Negli ultimi anni gli IDE sono diventati parte di ecosistemi anche molto complessi che contemplano anche gestione del ciclo di vita delle applicazioni; IDE, a cosa serve Lo scopo di un IDE non è banalmente quello di permettere allo sviluppatore di scrivere codice ma dovrebbe permettere allo stesso di aumentare la propria produttività in tutti le fasi della realizzazione di un sistema software. IDE, a cosa serve In sintesi: “At every juncture, advanced tools have been the key to a new wave of applications, and each wave of applications has been key to driving computing to the next level.” Bill Gates La storia di Microsoft Possiamo suddividere l’evoluzione degli strumenti di sviluppo in tre fasi: – Anni ‘70-’80 : poco più che compilatori a riga di comando ed editor di base; – Anni ’90 : primi IDE a finestre (grazie all’arrivo di Windows); – Dal 2000 ad oggi: l’ambiente di sviluppo si trasforma in una vera piattaforma di sviluppo. -
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 . -
Build the Altair 8800 Mini Computer, Part 1
HOW TO "READ" FM TUNER SPECIFICATIONS 7t ioiiIc $ WORLDS LARGEST-SELLING ELECTRONICS MAGAZINE JANUARY 1975/75¢ PROJECT BREAKTHROUGH! 1Mild's First Minicomputer Kit to Rival Commercial Models... ALTAIR 88U0" SAVE OVER $1000 { A LTA 1R 8800 PAX: 1. let F In au an {0 l O, OS T- f a, ci tt n Os S i Q 11 . `/ MOO J t '4, _ , - . r . _ !w tn. LIS All tl U at = Al {{ U /11. At at {O O 6 G .. t O u 11 tt 1! 11 uMu ' AlOS tnr uuw aMut . sr MOW .a a.Ma4ai ' . in 9 - t- 4 ALSO IN THIS ISSUE: An Under -$90 Scientific Calculator Project o,ae . CCD's-TV Camera Tube Successor? . r'`?99` Thyristor-Controlled Photoflashers ;- TEST REPORTS: lSt Technics 200 Speaker System le Q 0'© Pioneer RT-1011 Open -Reel Recorder Tram Diamond í,6. 3:cr Nvs .aa,© - é f g COGN311 Aw 551 Edmund Scientw sr .1121abEi 1 i4 Hewlett-Packar , t 9teat C6451CC479 kxG' 96IC4£ 18101 AmericanRadioHistory.Com Popular Electronics PC 1117/ JANUARY, 1975 TESTED EXCLUSIVE! ALTAIR 8800 The most powerful minicomputer project ever presente -caM be built for under $400 á: . ;' --¢-^-. ., - .-r= ALTAIR 8800 ui1 PIOr MM. °,ei r i1 Our eUI ,;11.101.- 30 IR' It ° 05 04 U n- 11 00 5, n t [ ,'r` q [1. Q.,' Q.-.. ó ' ri '11 43 ' gout 3301-I@ IM R] !It III MO 7, M 03 tl,ai' II II°. 'lb II. C' , 0 O . U,.G t! , , U, l ° ' 1 , , . ' ' - ' .1 IS ...se . I 1 1- 1 S 1^ I 0 - r 10 /1 p r5 e-, .INAull, _ y 1 "-----11 4% 4% ":-....:174111.UAfíS N 331 IrOi . -
The Computer History Simulation Project
The Computer History Simulation Project The Computer History Simulation Project The Computer History Simulation Project is a loose Internet-based collective of people interested in restoring historically significant computer hardware and software systems by simulation. The goal of the project is to create highly portable system simulators and to publish them as freeware on the Internet, with freely available copies of significant or representative software. Simulators SIMH is a highly portable, multi-system simulator. ● Download the latest sources for SIMH (V3.5-1 updated 15-Oct-2005 - see change log). ● Download a zip file containing Windows executables for all the SIMH simulators. The VAX and PDP-11 are compiled without Ethernet support. Versions with Ethernet support are available here. If you download the executables, you should download the source archive as well, as it contains the documentation and other supporting files. ● If your host system is Alpha/VMS, and you want Ethernet support, you need to download the VMS Pcap library and execlet here. SIMH implements simulators for: ● Data General Nova, Eclipse ● Digital Equipment Corporation PDP-1, PDP-4, PDP-7, PDP-8, PDP-9, PDP-10, PDP-11, PDP- 15, VAX ● GRI Corporation GRI-909 ● IBM 1401, 1620, 1130, System 3 ● Interdata (Perkin-Elmer) 16b and 32b systems ● Hewlett-Packard 2116, 2100, 21MX ● Honeywell H316/H516 ● MITS Altair 8800, with both 8080 and Z80 ● Royal-Mcbee LGP-30, LGP-21 ● Scientific Data Systems SDS 940 Also available is a collection of tools for manipulating simulator file formats and for cross- assembling code for the PDP-1, PDP-7, PDP-8, and PDP-11. -
E Bill Gates
E Bill Gates Bill Gates nacque il 28 Ottobre del 1955 a Seattle. Nel 1968, l'anno in cui si iscrisse alla prestigiosa scuola privata Lakeside , Gates e i suoi compagni ebbero accesso per la prima volta ad un computer , un DEC PDP- 11 di proprietà della Computer Center Corporation Alla fine del 1968, Gates, Allen ed altri due hacker del gruppo (Ric Weiland e Kent Evans), fondarono la Lakeside Programmers Group. Una società li assunse per trovare le debolezze del loro sistema, ed in cambio diede loro tempo illimitato al computer. Nel marzo del 1970 la società chiuse e la Lakeside Programmers Group dovette cercare altri modi per ottenere accesso ad un computer. Trovarono la Information Science Inc ., che li accettò per la creazione di un programma di gestione paghe, promettendo in cambio, oltre all'accesso al computer, anche una royalty se dai programmi del gruppo si fossero avuti dei guadagni. In quel periodo accade che gli altri tre del gruppo chiesero a Gates di lasciare il gruppo, perché il lavoro non sembrava sufficiente per tutti, ma Gates li convinse a tenerlo con loro. Successivamente, nel 1972, Bill e Paul fondarono la Traf-O-Data, che progettò un computer per misurare il traffico stradale La Traf-O-Data durò fino alla fine degli studi di Bill. I due lavorarono insieme anche per informatizzare il sistema di gestione della scuola . Negli ultimi anni di scuola, ebbero l'invito dalla TRW, non solo di trovare le debolezze del loro sistema ma anche di programmare i rimedi.Nel 1973, Gary Kildall scrisse un semplice sistema operativo nel suo linguaggio PL/M, il CP/M (Control Program/Monitor), e lasciò i sorgenti accessibili a tutti per scopi didattici. -
The Small Computer Catalog
The new Sol-20 is unique. In the home. Home uses are limited It's the first small computer designed as only by your imagination. Regulate heat and a complete system. light to save fuel. Run a complex model Most small computers simply "grew railroad. Compute taxes. Play a variety of like Topsy" - a memory here, an expansion TV games, not only computer hockey and module there. They weren't conceived or tennis, but more interesting, more complex integrated to provide maximum efficiency at games such as TREK-8O, where your starship lowest possible cost. takes on a whole fleet of Klingons. Several Sol-20, a true breakthrough in small sophisticated TV games come with the computer systems, includes all the essential Sol-20. And you can even design your own. elements as standard equipment — central At the office. Use it as a fullfledged processor, memory, keyboard and display, business computer. Use it to compose and software, a power supply, and appropriate edit letters electronically, store and retrieve packaging. mailing lists, process orders, maintain There are no "surprises." You don't journals and general ledgers, and produce have to buy expensive peripheral equipment statements and reports. to make it run. Its own keyboard and In the lab. Use Sol to reduce and "smart" terminal are built-in. analyze data statistically, control lab Use it without being a programming equipment, prepare graphics, and fit curves. expert. Sol-20 frees your time and expands your In fact, you can operate it efficiently without overall capability. any prior computer experience. In schools and universities. -
The Tarbell Cassette Interface
THE TARBELL CASSETTE INTERFACE Plugs directly into ALTAI R * 8800 or IMSAI 8080 Computer. Serial-Parallel and Parallel-Serial Conversion performed on board. It's fast - Up to 540 bytes per second (2200 bits per inch) with high-quality cassette recorder. 187 bytes per second (800 bits per inch) suggested s.tandard with medium quality ($39.95) recorder. 27 bytes per second (with modification) for Kansas City format. 1000 bytes per second @ 10 inches per second with PHI-DECK. Encoding method - Phase encoded self-clocking method requires only one channel, and withstands large amounts of wow and flutter. Has been used in the computer industry for many years. Can also be used to generate and detect Kansas City format tapes \~. ith small mod ification. Will work with most audio cassette recorders. Has been used with reel-reel tape recorders. Can easily be adapted to automatically (software) controlled digital cassette units. The J. C. Penny #6536 is presently being recommended ($39.95). Suggested tape is Scotch Low-Noise, High-Density audio tape. The device code (address) to which the interface responds is selectable in increments of 4 by an on- board dip-switch. '. Four extra status lines are available to read external conditions. Four extra control lines are available, which may be used to drive relays for extra cassette units, start stop control, or controlled cassette drives, such as the PHI-DECK. Two spare IC slots are provided on the board to do your own thing. Software provided includes input/output driver routines, bootstrap, read-only memory program, and a ' BASIC program for saving and loading data.