Application Program 1130 Commercial Subroutine

Total Page:16

File Type:pdf, Size:1020Kb

Application Program 1130 Commercial Subroutine a Application Program H20-0241-3 1130 Commercial Subroutine Package (1130-SE-25X), Version 3 Program Reference Manual The IBM 1130 Commercial Subroutine Package is for IBM 1130 users with a knowledge of FORTRAN. The package is not intended to make FORTRAN a complete commercial language, but to supply commercial capability to users of IBM 1130 FORTRAN. This manual is a combined users, operators, and system manual. Kristofer Sweger Fourth Edition This edition, H20-0241-3, is a major revision obsoleting H20-0241-2. A form is provided at the back of this publication for readers comments. If the form has been removed, comments may be addressed to IBM Corporation, Technical Publications Department, 112 East Post Road, White Plains, N.Y. 10601 CI International Business Machines Corporation 1966, 1967, 1968 CONTENTS Introduction 1 Use of the Commercial Subroutine Package 3 Machine Requirements 4 Special Considerations--Arithmetic 5 Special Considerations--Input/Output 6 FORTRAN Format I/O 6 CSP Overlapped I/O 6 Data Formats Used 7 Al Format 7 A2 Format 8 A3 Format 8 Dl Format 8 D4 Format 9 Format Requirements 11 Detailed Descriptions 12 ADD 13 AlA3 15 A1DEC 18 A3A1 21 CARRY 24 DECA1 26 DIV 28 DPACK 31 DUNPK 34 EDIT o • I 4 36 FILL 41 GET 42 I COMP 45 IOND 47 KE YBD 48 MOVE 50 MPY 52 NCOMP 54 NSIGN 56 NZ ONE 58 PACK 60 PRINT 62 PUNCH 64 PUT 66 P1403 68 P1442 70 READ 73 R2501 76 SKIP 79 STACK 81 SUB 82 S1403 84 TYPER 86 UNPAC 89 WHOLE 91 Sample Problems 93 Problem 1 93 Problem 2 104 Problem 3 116 Flowcharts 124 Listings 152 Appendix 190 Core Allocation 190 EBCDIC Characters and Decimal Equivalents 192 Timing Data 193 Programmers Reference Card 195 Operating Instructions 197 Halt Listing 198 Bibliography 199 a INTRODUCTION The 1130 Commercial Subroutine Package has been written to facilitate the use of FORTRAN in basic commercial programming. Included in the package are the following items: • The GET routine, which allows the programmer to decode input records after they have been read. This eliminates the common FORTRAN-associated problem that occurs when input cards enter the system in an unknown sequence. Input records that vary in this way may be read with the Al format and converted to real numbers (using GET) after the program has determined which type record was just read. • An editing routine, EDIT, for the preparation of output in special formats. With EDIT it is possible to insert commas, supply leading blanks, float dollar signs, display a CR symbol after negative numbers, etc. EDIT is especially useful in the preparation of invoices, checks, and other commercial documents. • Code conversion routines for data manipulation and more efficient data packing: GET - Al format to Real PUT - Real to Al format PACK - Al to A2 format UNPAC - A2 to Al format A1A3 - Al to A3 format A3A1 - A3 to Al format DPACK - Dl to D4 format DUNPK - D4 to D1 format A1DEC - Al to decimal format DECA1 - Decimal to Al format • A variable-length decimal arithmetic package. In this system, all arithmetic is done with integer or decimal numbers, with field lengths chosen by the user. This subset of the Commercial Subroutine Package includes routines for variable-length decimal add (ADD), subtract (SUB), multiply (MPY), divide (DIV), compare (ICOMP), and sign test (NSIGN). Use of this system eliminates two of the arithmetic problems associated with FORTRAN: the accuracy problem (the inexact representation of fractions) and the magnitude problem (extended precision values limited to nine digits, etc.). • Subroutines for improved speed and control of I/O devices. By taking advantage of the 1130s cycle-stealing capability, the overlapped I/O routines can substantially speed the throughput rates of many jobs. Subroutines are supplied for the IBM 1442 Card Read Punch IBM 1442-5 Card Punch IBM 2501 Card Reader IBM 1132 Printer IBM 1403 Printer Console Keyboard Console Typewriter -1- 1.1.1.1111111111$11111E HHIcilil 1111111111n 11111 1111111111111111111111111 1111111111111111111111111 In addition to input/output, subroutines are supplied for control of the 1132 and 1403 carriage and the 1442 stacker select mechanism. • Several utility routines for common tasks: NCOMP for comparing two variable-length alphameric (Al) fields MOVE for moving data from one area to another FILL to fill an area with a specified value WHOLE to truncate the fractional portion of a real number NZONE for testing and modifying zone punches USE OF THE COMMERCIAL SUBROUTINE PACKAGE CSP is modular in design -- the user may use whichever routines he needs and ignore the others. The routines may be assembled on any 4K card 1130 system, but an 8K system will prob- ably be required for any extensive usage. The desired subroutines may be inserted in the FORTRAN execute deck (card systems) or stored in the Subroutine Library on the disk cartridge. In addition, some of the CSP routines use certain parts of the IBM 1130 Sub- routine Library. (See "Core Allocation" in the Appendix.) All of the routines are written in the 1130 Assembler Language. The control statement ONE WORD INTEGERS must be used in programs that call any of the Commercial subroutines. The control statement EXTENDED PRECISION must be used in any program that calls the GET or PUT subprograms. The other CSP routines are independent of the real number precision. In general, CSP will operate under either Version 1 or Version 2 of the 1130 Disk Monitor System. The exceptions are P1403, 51403, P1442, and R2501, which use subroutines supplied only with Version 2 (see the detailed descriptions for more particulars). The use of the overlapped I/O portion of CSP is an "either/or" proposition. For nondisk I/O, the programmer must choose either the CSP overlapped routines or the standard FORTRAN routines. The two systems cannot be intermixed within the same program. Note the emphasis on nondisk. This exclusion does not apply to disk I/O, which may be used regardless which of the two systems is selected. Use of the overlapped I/O routines also excludes the employment of the TRACE feature of FORTRAN, since it used portions of the FORTRAN package for output. A MACHINE REQUIREMENTS For execution, an 8K 1130 system, with any card reader, is necessary. In addition, the following I/O devices are supported: 1442 Card Read Punch, Model 6 or 7 1442 Card Punch, Model 5 2501 Card Reader, Model Al or A2 1403 Printer, Model 6 or 7 1132 Printer Console Keyboard Console Typewriter Other I/O devices may be utilized through standard FORTRAN. For assembly, any 1130 card system is sufficient. The subroutines may be card- or disk-resident. 6 SPECIAL CONSIDERATIONS — ARITHMETIC Real arithmetic. When using CSP, remember that the standard FORTRAN limitations apply to all real numbers. Extended precision numbers should not exceed ± 1,000,000,000. (or 9 digits). Fractions must be avoided if exact results are desired. All critical arithmetic should be done with whole numbers. For example, the extension 40.75 hours x $2.225 per hour should be carried out as 4075. hundredths of hours x 2225. mills per hour If this is not done, precision errors may appear in the results. Decimal arithmetic. If the nine-digit or fractional limitations of FORTRAN prove burden- some, the Decimal Arithmetic package may be used. In this system, all arithmetic is done with whole numbers (no fractions), and the number of digits in each variable is chosen by the user. A number in decimal format may be as long as desired; there is no practical limit to field length. SPECIAL CONSIDERATIONS — INPUT/OUTPUT FORTRAN FORMAT I/O In general, CSP works with arrays in Al format -- one alphameric character per word. For those routines that operate on other formats, conversion routines are supplied to ease the translation between Al and the other format. In this area, however, one complication may occur: the use of zone punches. In many commercial applications, it is customary to X-punch the units position of a credit or neg- ative field. Because the 11-0 Hollerith combination is not recognized by the conversion routines used with FORTRAN READs, it is necessary, when keypunching, to omit the 0- punch when an 11-punch is present in the same column. This is not a problem with 1130- produced cards that later serve as input to subsequent runs. No control X-punches, in any positions, will be recognized when the underpunched digit is a zero. "Not recognized" means that the character position is replaced with a blank. This is the case for both input and output when standard FORTRAN READs and WRITE s are used. A 12-punch is not recognized by the conversion routines with FORTRAN when the under- punched digit is a zero. Therefore, a plus zero (12-0 Hollerith) will be expressed as only a 0-punch. For this reason, plus fields should be left =zoned rather than 12-punched in the units position. When the input routines supplied with this package are used, this problem does not exist. All zone punches are recognized and are treated properly. CSP OVERLAPPED I/O The CSP overlapped I/O routines have been provided to take advantage of the cycle- stealing capability of the 1130. Because many allow processing to be resumed before the I/O is finished, their use will increase the throughput rates of many programs. The table below summarizes the overlap capabilities of the routines: This device is overlapped with this function Card reader (1442 or 2501) Conversion from card code to Al format Card punch nothing (not overlapped) Console keyboard nothing (not overlapped) Console printer anything but the console keyboard Printer (1132 or 1403) anything The CSP I/O routines also permit the reading and punching of the 11-0 and 12-0 punches, both of which must be avoided with standard FORTRAN I/O.
Recommended publications
  • Systems IBM 1130 Bibliography
    GA26 -5916-1 0 File No. 1130-00 Systems IBM 1130 Bibliography This bibliography lists and describes all technical manuals and related materials needed by those who plan for, install, program, or operate the IBM 1130 Computing System. Order numbers, titles, current status, subject codes, and abstracts of the publications are provided. This bibliography is regularly updated to include new or revised publications pertaining to this systems reference library. Eleventh Edition (December 1973) This is a major revision of, and supersedes, GA26 -5916-9. The listings and abstracts are com­ pletely updated; and in Part 3, which was introduced in the Tenth Edition, the subject code of each publication has now been added to the left of its order number. Requests for IBM publications should be made to your IBM representative or to the IBM branch office serving your locality. A form for readers' comments is provided at the back of this bibliography. If the form has been removed, comments may be addressed to IBM Corporation, Dept. 77 A, 1133 Westchester Avenue, White Plains, New York 10604. Comments and suggestions become the property of IBM. Page of GA26-5916-1 0 Updated Sept. 19, 1974 By TNL: GN20-1131-0 Preface For each major IBM data processing system, publica­ Part 1 tions useful in planning, programming, installing and In Part 1, the subject code listing, one code is as­ operating that system are assembled in a system signed to a publication. Items within the cluster for bibliography. each code are in sequence. Normal sequencing is alphameric, by the most apparent keywords in the Organization of Bibliography titles of the manuals.
    [Show full text]
  • Computer Technology History
    Computer Technology History The affects of technology on our society. After completing this lesson, you will know: The history of computers from the 1940s up to the present. The future of computing. The many ways in which computers are used in modern life. How to make computers accessible to persons with disabilities. How computers are used in business and education. First Off…What are Computers? A Computer is an electronic device that receives data (input), processes data, stores data, and produces a result (output). Software is the instructions and/or programs that control the computer. Atanasoff-Berry Computer 1939 The first computing machine to use electricity, vacuum tubes, binary numbers and capacitors was created. The capacitors were in a rotating drum that held the electrical charge for the memory. History of Computing 1940s The first computers were built for breaking enemy codes in WWII The first all-electronic computer was developed during the 1940s. MARK series - 1944 Howard Aiken and Grace Hopper designed the MARK series of computers at Harvard University. The MARK series of computers began with the Mark I in 1944. Imagine a giant roomful of noisy, clicking metal parts, 55 feet long and 8 feet high. The 5-ton device contained almost 760,000 separate pieces. Used by the US Navy for gunnery and ballistic calculations, the Mark I was in operation until 1959. Vacuum Tube The vacuum tube was used to amplify voice and music. However, the tubes consumed power, created heat, burned out quickly, and required high maintenance. “Debugging” In the 1940s, computers were housed in buildings with no air conditioning.
    [Show full text]
  • APL\1130 Primer Student Text
    IBM APL\1130 Primer Student Text Student Text APL\1130 Primer ACKNOWLEDGEMENTS This Primer was written by Paul Berry of the IBM Research Division, T. J. Watson Research Center, York·town Heights, New York; it was adapted for use with the IBM 1130 from another APL Primer by the same author. The basic text benefitted greatly from the suggestions, criticisms, and comments of the readers of the various early drafts, and especially those of A. D. Falkoff, K. E. Iverson, J. C. McPherson, L. M. Breed, and R. H. Lathwell. The adaptation for the APL\1130 System was assisted by S. M. Raucher of the IBM Data Processing Division, Wheaton, Maryland, and Miss C. A. Conroy, who ran the sample problems at the 1130 console. NOTICE This text is distributed by IBM as a service to users of the 1130 computing system and to those who are interested in the APL language. Publication of this text does not imply support of the APL\1130 program; that program is a contributed program, distributed but not maintained by IBM. It is not part of the IBM product line, and has not been subject to product testing. Recipients of the APL\1130 program are expected to make their own final evaluation of its usefulness. This text contains description of certain features which were not provided in the original APL\1130 program distributed in February, 1968. These features include the use of labels (Chapter 13), common libraries (Chapter 15), and passwords for the locking of workspaces and sign-on numbers. Copies of this and other IBM publications can be obtained through IBM branch offices.
    [Show full text]
  • Cern Libraries, Geneva Cm-P00087609 Cern/Fc/1374
    CERN/FC/1374 CERN LIBRARIES, GENEVA Original: English 15 September, 1971 CM-P00087609 ORGANISATION EUROPÉENNE POUR LA RECHERCHE NUCLÉAIRE CERN EUROPEAN ORGANIZATION FOR NUCLEAR RESEARCH FINANCE COMMITTEE Hundred-and-fourteenth Meeting Geneva - 29 September, 1971 ADJUDICATION FOR REMOTE INPUT OUTPUT STATIONS FOR THE CERN CENTRAL COMPUTER SYSTEM The document CERN/FC/1340, Programme for Acquisition of Peripheral Equipment for the CERN Central Computer System, outlines the programme of development needed to build up a decentralized service based on the CDC 7600 computer. The first step in this programme consists of the acquisition of five or six Remote Input Output Stations. Each station will be based on a small computer which initially drives a card reader, line printer and a communications controller. Additional stations may be purchased later and some will be expanded by the addition of extra peripherals and high speed communications equipment as the demands on the decentralized service grow. The offers received from firms show the Modular One computer manufactured by Computer Technology Limited to be the one which most exactly meets the technical specification. The offer from Computer Technology Limited is a few percent more expensive than the two other possible machines for the initial configuration, but this is more than compensated for by the proven software and greater capability for ex• pansion of the Modular One Computer. The Finance Committee is requested to approve the award of the contract for an initial order of five or six basic Remote Input Output Stations from Computer Technology Limited at a price of approx• imately 182,000 Swiss Francs per station (excluding the card reader), with the possibility of later 71/286/5/e CERN/FC/1374 I.
    [Show full text]
  • Systems Reference Library IBM 1130 Disk Monitor System, Version 2, Programmer's and Operator's Guide
    File No. 1130-36 Order No. GC26-3717-10 Systems Reference Library IBM 1130 Disk Monitor System, Version 2, Programmer's and Operator's Guide Program Numbers: 1130-0S-005 1130-0S-00S Page of GC26-3717-9, 10 As Updated October 22, 1976 By TNL GN34-0353 Eleventh Edition (June 1974) This is a reprint of GC26-3717-9 incorporating changes released in Technical Newsletter GN34-0183 dated February 1974. This edition applies to version 2, modification 12, of the IBM 1130 Disk Monitor Programming System; to version 1, modification 5, of the IBM 1130 Remote Job Entry Work Station Program, and to all subsequent versions and modifications until otherwise indicated in new editions or Technical Newsletters. Changes are periodically made to the information herein. Before using this publication in connection with the operation of IBM systems, consult the latest SRL Newsletter, GN20-1130, for the editions that are applicable and current. Text for this manual has been prepared with the IBM Selectric ® Composer. Some illustrations in this manual have a code number in the lower corner. This is a publishing control number and is not related to the subject matter. Requests for copies of IBM publications should be made to your IBM representative or to the IBM branch office serving your locality. Address comments concerning the contents of this publication to IBM Corporation, General Systems Division, Department 27T, P.O. Box 1328, Boca Raton, Florida 33432. Comments become the I property of IBM. ©Copyright International Business Machines Corporation 1966, 1968, 1969, 1970, 1971, 1972 Preface This publication contains reference information for controlling and operating the 1130 Disk Monitor System, Version 2.
    [Show full text]
  • Emulation and Computing History the Computer History Simulation Project and SIMH
    Emulation and computing history The Computer History Simulation Project and SIMH Skill Level: Intermediate M. Tim Jones ([email protected]) Senior Architect 22 Mar 2011 The simplest computing devices we use today have more processing capability than the most capable computing systems of yesterday. For example, the VAX 11/780 delivered around 0.5 MIPS in the early 1980s. Compare that to an IBM zEnterprise™ 196 (z196) mainframe of today, which can support well over 52 KMIPS. However, we can learn a lot from early computing history. If you've ever wanted to boot an IBM 1130, PDP-11, or MITS Altair, then the Computer History Simulation Project is just what you've been looking for. In late 1978, as a birthday gift, I received my first computer. It was a TRS-80 model 1 with 4KB of memory and cassette tape mass storage, which I later upgraded to an Exatron stringy floppy. Within a few weeks, my BASIC programming skills had evolved to the point that I had exceeded the available memory for my yet-to-be-completed program: a sad day. Little did I know 30 years later, as an embedded firmware engineer, I would still spend much of my time trying to squeeze more code and data into a smaller address space. Computer history is fascinating, as are some of the early computers that were developed. Many of the early machines were rudimentary calculators, such as Konrad Zuse's Z1, which he invented in 1931, and going back even farther, Herman Hollerith's mechanical sorting machine that was used in the 1890 census; six years later his is one of the companies that merged and became IBM.
    [Show full text]
  • 2008, REC Is a Live on IBM 1130 Simulator, Ignacio Vega-Pa…
    REC language is a live on IBM1130 simulator This work is archaeological reconstruction of REC/A language on IBM1130 Simulator from Computer History Simulation Project Ignacio Vega-Páez1, José Angel Ortega 2 and Georgina G. Pulido3 [email protected], [email protected] and [email protected] IBP-TR2009-04 Apr 2009, México, D.F. ABSTRACT REC (Regular Expression Compiler) is a concise programming language development in mayor Mexican Universities at end of 60’s which allows students to write programs without knowledge of the complicated syntax of languages like FORTRAN and ALGOL. The language is recursive and contains only four elements for control. This paper describes use of the interpreter of REC written in FORTRAN on IBM1130 Simulator from “Computer History Simulation” Project [2008 Vega]. Terms Key: REC (Regular Expression Compiler), Programming language, Archeology software. This work is archaeological reconstruction of language REC/A on IBM1130 Simulator form Computer History Simulation Project (http://simh.trailing-edge.com/) used for 1130 fans in www.ibm1130.org, the interpreter REC Fortran was writing for Gerardo Cisneros at the beginning of computing in Mexico, which marks a milestone in software development in Mexico, so it is important to bring to life this version of REC/A. A formal definition of REC language was published by Harold V. McIntosh in AIM-149 of MIT Artificial Intelligence Group and too “Acta Mexicana de Ciencia y Tecnología” of IPN México City. see [68a McIntosh] & [68b McIntosh] respectively, and for detail
    [Show full text]
  • EMEA Headquarters in Paris, France
    1 The following document has been adapted from an IBM intranet resource developed by Grace Scotte, a senior information broker in the communications organization at IBM’s EMEA headquarters in Paris, France. Some Key Dates in IBM's Operations in Europe, the Middle East and Africa (EMEA) Introduction The years in the following table denote the start up of IBM operations in many of the EMEA countries. In some cases -- Spain and the United Kingdom, for example -- IBM products were offered by overseas agents and distributors earlier than the year listed. In the case of Germany, the beginning of official operations predates by one year those of the Computing-Tabulating-Recording Company, which was formed in 1911 and renamed International Business Machines Corporation in 1924. Year Country 1910 Germany 1914 France 1920 The Netherlands 1927 Italy, Switzerland 1928 Austria, Sweden 1935 Norway 1936 Belgium, Finland, Hungary 1937 Greece 1938 Portugal, Turkey 1941 Spain 1949 Israel 1950 Denmark 1951 United Kingdom 1952 Pakistan 1954 Egypt 1956 Ireland 1991 Czech. Rep. (*split in 1993 with Slovakia), Poland 1992 Latvia, Lithuania, Slovenia 1993 East Europe & Asia, Slovakia 1994 Bulgaria 1995 Croatia, Roumania 1997 Estonia The Early Years (1925-1959) 1925 The Vincennes plant is completed in France. 1930 The first Scandinavian IBM sales convention is held in Stockholm, Sweden. 4507CH01B 2 1932 An IBM card plant opens in Zurich with three presses from Berlin and Stockholm. 1935 The IBM factory in Milan is inaugurated and production begins of the first 080 sorters in Italy. 1936 The first IBM development laboratory in Europe is completed in France.
    [Show full text]
  • APL / J by Seung­Jin Kim and Qing Ju
    APL / J by Seung-jin Kim and Qing Ju What is APL and Array Programming Language? APL stands for ªA Programming Languageº and it is an array programming language based on a notation invented in 1957 by Kenneth E. Iverson while he was at Harvard University[Bakker 2007, Wikipedia ± APL]. Array programming language, also known as vector or multidimensional language, is generalizing operations on scalars to apply transparently to vectors, matrices, and higher dimensional arrays[Wikipedia - J programming language]. The fundamental idea behind the array based programming is its operations apply at once to an entire array set(its values)[Wikipedia - J programming language]. This makes possible that higher-level programming model and the programmer think and operate on whole aggregates of data(arrary), without having to resort to explicit loops of individual scalar operations[Wikipedia - J programming language]. Array programming primitives concisely express broad ideas about data manipulation[Wikipedia ± Array Programming]. In many cases, array programming provides much easier methods and better prospectives to programmers[Wikipedia ± Array Programming]. For example, comparing duplicated factors in array costs 1 line in array programming language J and 10 lines with JAVA. From the given array [13, 45, 99, 23, 99], to find out the duplicated factors 99 in this array, Array programing language J©s source code is + / 99 = 23 45 99 23 99 and JAVA©s source code is class count{ public static void main(String args[]){ int[] arr = {13,45,99,23,99}; int count = 0; for (int i = 0; i < arr.length; i++) { if ( arr[i] == 99 ) count++; } System.out.println(count); } } Both programs return 2.
    [Show full text]
  • 2 9215FQ14 FREQUENTLY ASKED QUESTIONS Category Pages Facilities & Buildings 3-10 General Reference 11-20 Human Resources
    2 FREQUENTLY ASKED QUESTIONS Category Pages Facilities & Buildings 3-10 General Reference 11-20 Human Resources 21-22 Legal 23-25 Marketing 26 Personal Names (Individuals) 27 Predecessor Companies 28-29 Products & Services 30-89 Public Relations 90 Research 91-97 April 10, 2007 9215FQ14 3 Facilities & Buildings Q. When did IBM first open its offices in my town? A. While it is not possible for us to provide such information for each and every office facility throughout the world, the following listing provides the date IBM offices were established in more than 300 U.S. and international locations: Adelaide, Australia 1914 Akron, Ohio 1917 Albany, New York 1919 Albuquerque, New Mexico 1940 Alexandria, Egypt 1934 Algiers, Algeria 1932 Altoona, Pennsylvania 1915 Amsterdam, Netherlands 1914 Anchorage, Alaska 1947 Ankara, Turkey 1935 Asheville, North Carolina 1946 Asuncion, Paraguay 1941 Athens, Greece 1935 Atlanta, Georgia 1914 Aurora, Illinois 1946 Austin, Texas 1937 Baghdad, Iraq 1947 Baltimore, Maryland 1915 Bangor, Maine 1946 Barcelona, Spain 1923 Barranquilla, Colombia 1946 Baton Rouge, Louisiana 1938 Beaumont, Texas 1946 Belgrade, Yugoslavia 1926 Belo Horizonte, Brazil 1934 Bergen, Norway 1946 Berlin, Germany 1914 (prior to) Bethlehem, Pennsylvania 1938 Beyrouth, Lebanon 1947 Bilbao, Spain 1946 Birmingham, Alabama 1919 Birmingham, England 1930 Bogota, Colombia 1931 Boise, Idaho 1948 Bordeaux, France 1932 Boston, Massachusetts 1914 Brantford, Ontario 1947 Bremen, Germany 1938 9215FQ14 4 Bridgeport, Connecticut 1919 Brisbane, Australia
    [Show full text]
  • 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.
    [Show full text]
  • Systems Reference Library IBM 1130 System Summary
    File No. 1130-00 Form A26-5917-5 Systems Reference Library IBM 1130 System Summary The System Summary presents a brief introduction to the IBM 1130 Computing System, including system concepts, components, and programming systems. Intended as a general, overall picture of the 1130, the manual helps the reader gain a basic understanding of the system and its use. S beth Edition This is a revision of and makes obsolete the previous edition (A26-5917-4). The new material added concerns the liM 1131 Central Processing Unit, the IBM 1133 Multiplex Control Enclosure, the IBM 1442 Card Punch, the ffiM 2501 Card Reader, the liM 1403 Printer, the ffiM 2310 Disk Storage, the IBM 1231 Optical Mark Reader, and the IBM Synchronous Communications Adapter. Specifications contained herein are subject to change from time to time. Any such change will be reported in subsequent revisions or Technical Newsletters. The illustrations in this manual have a code number in the lower corner. This is a publishing control number and is not related to the subject matter. Copies of this and other IBM publications can be obtained through IBM Branch Offices. This manual was prepared by the IBM Systems Deve lopment Division, Product Publications, Dept. 455, Bldg. 014, San Jose, California 95114. Send comments concerning the contents of this manual to this address. ii CONTENTS Page Page INTRODUCTION 1 IBM 2310 Disk storage ••••••••• 0 • • • • • • • 6 IBM 1627 Plotter • • • • • • • • • • • • • • • • • • • • • 6 SYSTEM UNITS AND FEATURES .•....•.. 2 IBM 1231 Optical Mark Page Reader ••••••• 7 IBM 1131 Central Processing Unit, IBM Synchronous Communications Adapter ••• 8 Models 1, 2, and 3 ....•••..••.•...
    [Show full text]