Hewlett-Packard 2100 Processor Description, 1972
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
BASIC Session
BASIC Session Chairman: Thomas Cheatham Speaker: Thomas E. Kurtz PAPER: BASIC Thomas E. Kurtz Darthmouth College 1. Background 1.1. Dartmouth College Dartmouth College is a small university dating from 1769, and dedicated "for the educa- tion and instruction of Youth of the Indian Tribes in this Land in reading, writing and all parts of learning . and also of English Youth and any others" (Wheelock, 1769). The undergraduate student body (now nearly 4000) outnumbers all graduate students by more than 5 to 1, and majors predominantly in the Social Sciences and the Humanities (over 75%). In 1940 a milestone event, not well remembered until recently (Loveday, 1977), took place at Dartmouth. Dr. George Stibitz of the Bell Telephone Laboratories demonstrated publicly for the first time, at the annual meeting of the American Mathematical Society, the remote use of a computer over a communications line. The computer was a relay cal- culator designed to carry out arithmetic on complex numbers. The terminal was a Model 26 Teletype. Another milestone event occurred in the summer of 1956 when John McCarthy orga- nized at Dartmouth a summer research project on "artificial intelligence" (the first known use of this phrase). The computer scientists attending decided a new language was needed; thus was born LISP. [See the paper by McCarthy, pp. 173-185 in this volume. Ed.] 1.2. Dartmouth Comes to Computing After several brief encounters, Dartmouth's liaison with computing became permanent and continuing in 1956 through the New England Regional Computer Center at MIT, HISTORY OF PROGRAMMING LANGUAGES 515 Copyright © 1981 by the Association for Computing Machinery, Inc. -
Development of Time Shared Basic System Processor for Hewlett Packard 2100 Series Computers by John Sidney Shema a Thesis Submit
Development of time shared basic system processor for Hewlett Packard 2100 series computers by John Sidney Shema A thesis submitted to the Graduate Faculty in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE in Electrical Engineering Montana State University © Copyright by John Sidney Shema (1974) Abstract: The subject of this thesis is the development of a low cost time share BASIC system which is capable of providing useful computer services for both commercial and educational users. The content of this thesis is summarized as follows:First, a review of the historical work leading to the development of time share principles is presented. Second, software design considerations and related restrictions imposed by hardware capabilities and their impact on system performance are discussed. Third, 1000D BASIC operating system specifications are described by detailing user software capabilities and system operator capabilities. Fourth, TSB system organization is explained in detail. This involves presenting TSB system modules and describing communication between modules. A detailed study is made of the TSB system tables and organization of the system and user discs. Fifth, unique features of 1000D BASIC are described from a functional point of view. Sixth, a summary of the material presented in the thesis is made. Seventh, the recommendation is made that error detection and recovery techniques be pursued in order to improve system reliability. In presenting this thesis in partial fulfillment of the requirements, for an advanced degree at Montana State University, I agree that permission for extensive copying of this thesis for scholarly purposes may be granted by my major professor, or, in his absence, by the Director of Libraries. -
Basic: the Language That Started a Revolution
TUTORIAL BASIC BASIC: THE LANGUAGE THAT TUTORIAL STARTED A REVOLUTION Explore the language that powered the rise of the microcomputer – JULIET KEMP including the BBC Micro, the Sinclair ZX80, the Commodore 64 et al. ike many of my generation, BASIC was the first John Kemeny, who spent time working on the WHY DO THIS? computer language I ever wrote. In my case, it Manhattan Project during WWII, and was inspired by • Learn the Python of was on a Sharp MZ-700 (integral tape drive, John von Neumann (as seen in Linux Voice 004), was its day L very snazzy) hooked up to my grandma’s old black chair of the Dartmouth Mathematics Department • Gain common ground with children of the 80s and white telly. For other people it was on a BBC from 1955 to 1967 (he was later president of the • Realise how easy we’ve Micro, or a Spectrum, or a Commodore. BASIC, college). One of his chief interests was in pioneering got it nowadays explicitly designed to make computers more computer use for ‘ordinary people’ – not just accessible to general users, has been around since mathematicians and physicists. He argued that all 1964, but it was the microcomputer boom of the late liberal arts students should have access to computing 1970s and early 1980s that made it so hugely popular. facilities, allowing them to understand at least a little And in various dialects and BASIC-influenced about how a computer operated and what it would do; languages (such as Visual Basic), it’s still around and not computer specialists, but generalists with active today. -
BASIC Programming with Unix Introduction
LinuxFocus article number 277 http://linuxfocus.org BASIC programming with Unix by John Perr <johnperr(at)Linuxfocus.org> Abstract: About the author: Developing with Linux or another Unix system in BASIC ? Why not ? Linux user since 1994, he is Various free solutions allows us to use the BASIC language to develop one of the French editors of interpreted or compiled applications. LinuxFocus. _________________ _________________ _________________ Translated to English by: Georges Tarbouriech <gt(at)Linuxfocus.org> Introduction Even if it appeared later than other languages on the computing scene, BASIC quickly became widespread on many non Unix systems as a replacement for the scripting languages natively found on Unix. This is probably the main reason why this language is rarely used by Unix people. Unix had a more powerful scripting language from the first day on. Like other scripting languages, BASIC is mostly an interpreted one and uses a rather simple syntax, without data types, apart from a distinction between strings and numbers. Historically, the name of the language comes from its simplicity and from the fact it allows to easily teach programming to students. Unfortunately, the lack of standardization lead to many different versions mostly incompatible with each other. We can even say there are as many versions as interpreters what makes BASIC hardly portable. Despite these drawbacks and many others that the "true programmers" will remind us, BASIC stays an option to be taken into account to quickly develop small programs. This has been especially true for many years because of the Integrated Development Environment found in Windows versions allowing graphical interface design in a few mouse clicks. -
An ECMA-55 Minimal BASIC Compiler for X86-64 Linux®
Computers 2014, 3, 69-116; doi:10.3390/computers3030069 OPEN ACCESS computers ISSN 2073-431X www.mdpi.com/journal/computers Article An ECMA-55 Minimal BASIC Compiler for x86-64 Linux® John Gatewood Ham Burapha University, Faculty of Informatics, 169 Bangsaen Road, Tambon Saensuk, Amphur Muang, Changwat Chonburi 20131, Thailand; E-mail: [email protected] Received: 24 July 2014; in revised form: 17 September 2014 / Accepted: 1 October 2014 / Published: 1 October 2014 Abstract: This paper describes a new non-optimizing compiler for the ECMA-55 Minimal BASIC language that generates x86-64 assembler code for use on the x86-64 Linux® [1] 3.x platform. The compiler was implemented in C99 and the generated assembly language is in the AT&T style and is for the GNU assembler. The generated code is stand-alone and does not require any shared libraries to run, since it makes system calls to the Linux® kernel directly. The floating point math uses the Single Instruction Multiple Data (SIMD) instructions and the compiler fully implements all of the floating point exception handling required by the ECMA-55 standard. This compiler is designed to be small, simple, and easy to understand for people who want to study a compiler that actually implements full error checking on floating point on x86-64 CPUs even if those people have little programming experience. The generated assembly code is also designed to be simple to read. Keywords: BASIC; compiler; AMD64; INTEL64; EM64T; x86-64; assembly 1. Introduction The Beginner’s All-purpose Symbolic Instruction Code (BASIC) language was invented by John G. -
Thomas E. Kurtz Professor of Mathematics and Computer
Thomas E. Kurtz Professor of Mathematics and Computer Science, Emeritus An Interview Conducted by Daniel Daily Hanover, New Hampshire June 20, 2002 July 2, 2002 DOH-44 Special Collections Dartmouth College Hanover, New Hampshire Thomas Kurtz Interview INTERVIEWEE: Thomas Kurtz INTERVIEWER: Daniel Daily PLACE: Hanover, NH DATE: June 20, 2002 DAILY: Today is June 20, 2002 and I am speaking with Professor Emeritus Thomas Kurtz. Professor Kurtz, one of the first questions I would like to ask is what brought you to Dartmouth and specifically the math department here? KURTZ: It was primarily the attraction of the geographical area. I was a graduate student at Princeton and, incidentally, at one point I lived less than a block from the Kemenys [John G. and Jean Kemeny], but I didnʼt know them down there because we were in different spheres. I think by that time he was a junior faculty member of philosophy and I was a lowly graduate student in mathematics. At any rate, in the summer of 1955, my first wife and I and our family came up to Hanover to visit people who we knew down at Princeton, particularly Bob [Robert] and Anita Norman who had moved up here. He had taken a position in the math department -- or was here for the summer at least -- and [J.] Laurie and Joan Snell, whom we knew quite well at Princeton. So we came up and spent a week…I donʼt know…and thought, “Gee, this is a lovely part of the country.” I had previously thought, “Well, obviously I am going to go out west where men are men and women are glad of it type of thing in the mountains." Then, I think it was about March of the year I was scheduled to finish my degree at Princeton and I had mentioned something about wanting to go to Dartmouth because one of my friends had said that Kemeny was in town recruiting. -
1985 , Volume , Issue Apr-1985
HEW LET"TPACKARD CD ei APRIL 19B5 © Copr. 1949-1998 Hewlett-Packard Co. HEW LETT-PACKARD UlÕs)LJ-Ú April 1985 Volume 36 • Number 4 Articles 4 A Low-Cost, Compact, Block-Mode Computer Terminal, by Jean-Louis Chapuis and Michèle in Reliability and ergonomic considerations were given high priority in its design. 7 A Reliable, Low-Cost Keyboard Interface Mechanical Design of a Low-Cost Terminal, by Michel Cauzid Integral display tilt 8 and swivel mechanisms anda detached low-profile keyboard help it adapt to users' needs. 9 VLSI Design in the HP 2392A Terminal, by Jean-Jacques Simon The cost of the CRT control function was reduced 80% by integrating it in a single VLSI chip. 13 A Fast Gate Array Companion for a CRT Controller 15 How to Scroll Smoothly 1O Fully Automated Production of Display Terminal Printed Circuit Assemblies, by D Christian-Marcel Dulphy DIP and axial inserters install 103 components and a six-axis robot inserts 41 more. 1O A Low-Cost, Reliable Analog Video Display Terminal Design, by Rene Martinelli and O Jean Yves Chatron A small cabinet with no fan made heat dissipation a major concern. 23 Authors An Intelligent Plotter for High-Throughput, Unattended Operation, by Martin L Stone, Peter L transparency JefferyW. Groenke, andTodd L Russell A cut-sheet paper or transparency feeder graphics 6g pen acceleration enable users to get multiple copies of presentation graphics quickly and easily. Low-Mass, Low-Cost Pen-Lift Mechanism for High-Speed Plotting, by Tammy V. Herr and Hatem E. Mostafa An adaptive pen up/down cycle reduces pen nib wear without sacrificing plotting speed. -
Beginning Microsoft® Small Basic
® Beginning Microsoft Small Basic ® ® ® ™ Plus a Porting Guide to Microsoft Visual Basic , C# , and Java © PHILIP CONROD & LOU TYLEE, 2010 Kidware Software PO Box 701 Maple Valley, WA 98038 http://www.computerscienceforkids.com http://www.kidwaresoftware.com Copyright © 2010 by Philip Conrod & Lou Tylee. All rights reserved Kidware Software PO Box 701 Maple Valley, Washington 98038 1.425.413.1185 www.kidwaresoftware.com www.computerscienceforkids.com www.biblebytebooks.com All Rights Reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. Printed in the United States of America ISBN-13: 978-1-937161-19-4 Book Cover Illustration by Kevin Brockschmidt Copy Editor: Stephanie Conrod This copy of the Beginning Microsoft Small Basic book and the associated software is licensed to a single user. Copies of the course are not to be distributed or provided to any other user. Multiple copy licenses are available for educational institutions. Please contact Kidware Software for school site license information. This guide was developed for the course, “Beginning Microsoft Small Basic,” produced by Kidware Software, Maple Valley, Washington. It is not intended to be a complete reference to the Small Basic language. Please consult the Microsoft website for detailed reference information. This guide refers to several software and hardware products by their trade names. These references are for informational purposes only and all trademarks are the property of their respective companies and owners. Microsoft, Visual Studio, Small Basic, Visual Basic, Visual J#, and Visual C#, IntelliSense, Word, Excel, MSDN, and Windows are all trademark products of the Microsoft Corporation. -
Características Impresora HP 2100
HP LaserJet 2100, HP LaserJet 2100 2100 2100M M, 2100TN 2100 Printers TN Printers User Guide • User Guide Copyright© 1998 Hewlett-Packard Co. Printed in Germany Manual Part No. C4170-90901 *C4170-90901* Printed on *C4170-90901* Recycled Paper C4170-90901 HP LaserJet 2100, 2100 M, and 2100 TN Printers User Guide _________________ © Copyright Hewlett-Packard Warranty Trademark Credits Company 2002 The information contained in Adobe®, Acrobat®, PostScript®, All Rights Reserved. this document is subject to and Adobe Photoshop® are Reproduction, adaptation, or change without notice. trademarks of Adobe Systems translation without prior written Hewlett-Packard makes no Incorporated which may be permission is prohibited, except warranty of any kind with registered in certain as allowed under the copyright respect to this information. jurisdictions. laws. HEWLETT-PACKARD Arial®, Monotype®, and Times Publication number: SPECIFICALLY DISCLAIMS New Roman® are U.S. THE IMPLIED WARRANTY OF C4170-90901 registered trademarks of the MERCHANTABILITY AND Monotype Corporation. Second Edition, January 2002 FITNESS FOR A PARTICULAR PURPOSE. CompuServe™ is a U.S. trademark of CompuServe, Inc. Hewlett-Packard shall not be liable for any direct, indirect, Helvetica™, Palatino™, Times™, incidental, consequential, or and Times Roman™ are other damage alleged in trademarks of Linotype AG and/ connection with the furnishing or or its subsidiaries in the U.S. use of this information. and other countries. Microsoft®, MS Windows, Windows®, and Windows NT® are U.S. registered trademarks of Microsoft Corporation. LaserWriter® is a registered trademark of Apple Computer, Inc. TrueType™ is a U.S. trademark of Apple Computer, Inc. ENERGY STAR® is a U.S. -
Measure for the Men and Women Or Hewlett-Packard F MAY 19N
Measure For the men and women or Hewlett-Packard f MAY 19n • ICs the HP way (pages 2-6) • Revised Corporate Objectives (pages 7-10) • The role of enterprise (pages 11-13) • Lucky young lady (pages 14-15) The miracle in asmall package HP's big stake in the Ie revolution o The introduction of HP's 9100A desktop calculator in 1968 was hailed as a technological milestone. The 91 OOA could solve problems in science and engi neering that had been beyond the reach of earlier electronic calculators, even In a speech to Stanford graduate stu outperforming some computers of its day. It could be programmed with mag dents and alumni last November, HP netic cards so that complex problems could be solved with a fe\'l keystrokes. Executive Vice President John Young And it was no bigger than an office typewriter. which was quite an accomplish commented on the dramatic progress of ment at the time. IC technology. "In 1960," he said, "simple minicomputers would typically need Today that same capability - and a little more - is packed in a pocket 10,000 separate, discrete transistors, each sized, battery-powered version, the HP-67. It weighs only 11 ounces - 58 times made on a single chip of silicon. Then less than the 9100A. came the integrated circuit revolution. By The reason for this tremendous reducing act in less thEm a decade? Inte 1965 there were commercially available grated circuits. Tiny devices that combine thousands of circuit elements on a ICs that combined about ten transistors, single silicon chip. The Ie, third-generation descendant of the vacuum tube with all their interconnections. -
Microprogramming and Its Relationship to Emulation and Technology*
MICROPROGRAMMING AND ITS RELATIONSHIP TO EMULATION AND TECHNOLOGY* Samuel H. Fuller and Victor R. Lesser Carnesie-Mellon University Pittsburgh, Pennsylvania C. Gordon Bell and Charles Kaman Digital Equipment Corporation Maynard, Massachusetts ABSTRACT data paths; or features of a processor's realization, such as the speed of main memory to that of the control (micro-) This paper is a survey of the development and future memory, are easily rejected on the basis of existing trends in rnicroprograrnrning. We show how the structure of processors that are commonly recosnized to be rnicroprograrnmed processors has been shaped primarily by microprogramrned processors yet do not possess the required two factors= the state of (semiconductor) technology and the features. task of emulation. The other main theme of this article is that it is a fruitless exercise to try to characterize and understand Most of this confusion in alternative definitions of microprograrnming in terms of how it differs from 'regular' microprograrnrning comes from the fact that it has been used programming. The right approach to understanding in two very different ways: (1) in a technological manner to microprogramrning is to recognize that it is primarily applied economically implement a complex instruction set or a small to the task of emulation (interpretation). Through this number of different instruction sets on a single processor, approach the evolution of rnicroprograrnming, independent of and (2) in a software manner to provide programmers with an a particular technology and type of instruction set being extra degree of representational freedom, i.e. develop emulated, is reviewed and future trends indicated. multiple instruction sets, each one appropriate for a particular task domain. -
HP3000 Evolution
HP3000 Evolution -Homestead -Tune Up -Migrate Edited by Bob Green. From articles written by Robelle, by The 3000 Newswire, and by experts in the HP 3000 field: Chris Edler, Paul Edwards, Marius Schild, Neil Armstrong, John Burke, Alan Wyman and Alan Heter, Stan Sieler and Gavin Scott, Ken Robertson, Eugene Volokh (VESoft), Alfredo Rego, Fred White, Steve Hammond, Wayne Boyer, Alan Yeo, Gunnar Fredlund, Terry O'Brien, Michael Marxmeier, Aaron Holmes, Dave Lo, and Glenn Cole. Copyright © 2003-2004 Robelle Solutions Technology Inc. Articles included in this book are courtesy of individual authors and respective copyright owners. Original copyrights are applicable to each article. Updated Friday, May 07, 2004 Qedit and Suprtool are trademarks of Robelle Solutions Technology Inc. HP is a trademark of the Hewlett-Packard Company. Windows is a trademark of Microsoft Corporation. Other product and company names mentioned herein may be the trademarks of their respective owners. PRINTED IN CANADA Robelle Solutions Technology Inc. 7360 137 Street, Suite 372 Surrey, B.C. Canada V3W 1A3 Phone: 604.501.2001 Fax: 604.501.2003 E-mail: [email protected] E-mail: [email protected] Web: www.robelle.com Contents Introduction 1 Migrate, Homestead, or Evolve?................................................................................................1 The Future....................................................................................................................2 Updates to HP 3000 Evolution ....................................................................................3