CBASIC® Language Reference Manual [Q] DIGITAL RESEARCHTM

Total Page:16

File Type:pdf, Size:1020Kb

CBASIC® Language Reference Manual [Q] DIGITAL RESEARCHTM CBASIC® Language Reference Manual [Q] DIGITAL RESEARCHTM CBASIC® Language Reference Manual COPYRIGHT Copyright © 1981, 1982 by Digital Research. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language or computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual or otherwise, without the prior written permission of Digital Research, Post Office Box 579, Pacific Grove, California, 93950. This manual is, however, tutorial in nature. Thus, the reader is granted permission to include the example programs, either in whole or in part, in his own programs. DISCLAIMER Digital Research makes no representations or warranties with respect to the contents hereof and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose. Further, Digital Research reserves the right to revise this publication and to make changes from time to time in the content hereof without obligation of Digital Research to notify any person of such revision or changes. TRADEMARKS CBASIC, CP 1M, CP IM-86 , and CP INET are registered trademarks of Digital Research. CBASIC-86, DDT, MP 1M, and MP IM-86 are trademarks of Digital Research. Z80 is a registered trademark of Zilog Inc. Intel is a registered trademark of Intel Corporation. The CBASIC Language Reference Manual was prepared using the Digital Research TEX Text Formatter and printed in the United States of America by Commercial Press/ Monterey. First Edition: November 1981 Second Edition: October 1982 Foreword CBASIC® is a comprehensive and versatile programming language for developing professional microcomputer software. Software developers worldwide have selected CBASIC for its capacity to quickly produce reliable, maintainable programs in an enhanced programming environment. CBASIC combines the power of a structured, high-level language with the simplicity of BASIC to provide a serious development tool that is easy to learn and easy to use. If you are a newcomer to data processing, read an introductory text on BASIC first. All you need is an understandJng of elementary programming concepts and a familiarity with BASIC terminology to learn CBASIC. The CBASIC Language Reference Manual covers CBASIC and CBASIC-86™. • CBASIC runs under the CP/M®, MPIM™, and CPINET® operating systems for computers based on the Intel® 8080, 8085 or the Zilog Z80® microprocessor. • CBASIC-86 runs under the CP IM-86® or MPIM-86™ operating systems for computers based on the Intel 8086 microprocessor. Section 6 discusses the minor differences between the two versions of CBASIC. At the end of Section 1 is a demonstration program that you can compile and run by following a few simple steps. The rest of the manual covers three main topics: CBASIC language definition, machine dependencies, and the Compiler and Interpreter. • Sections 2, 3, and 4 define the CBASIC language. • Section 5 covers input and output. • Section 6 discusses assembly language interfacing and other machine-dependent topics. • Section 7 discusses the Compiler, run-time Interpreter, and Cross-reference Lister. iii iv Table of Contents 1 Getting Started with CBASIC 1.1 CBASIC Components ......................................... 1 1.2 Program Structure ............................................ 1 1.3 A Demonstration Program ..................................... 2 2 Names, Numbers, and Expressions 2.1 Identifiers ................................................... 5 2.2 Strings ...................................................... 6 2.3 Numbers ...........................' .........'................ 7 2.4 Variables and Array Variables .................................. 8 2.5 Expressions .................................................. 9 3 Statements and Functions ........................................... 13 4 Defining and Using Functions 4.1 Function Names .............................................. 103 4.2 Function Definitions .......................................... 104 4.2.1 Single-Statement Functions ............................. 104 4.2.2 Multiple-Statement Functions ........................... 105 4.3 Function References ........................................... 106 5 Input and Output 5.1 Console Input and Output ..................................... 107 5.2 Printing ..................................................... 108 5.3 Formatted Printing ................................ 108 5.3. 1 String Character Fields ................................. 109 5.3.2 Fixed-Length String Fields .............................. 109 5.3.3 Variable-Length String Fields ............................ 110 5.3.4 Numeric Data Fields ................................... 111 5.3.5 Escape Characters ...........................' . .. 114 v Table of Contents (continued) 5.4 File Organization ............................................. 114 5.4.1 Sequential Files ........................................ 115 5.4.2 Relative Files..................................... ..... 117 5.5 Maintaining Files ............................................. 119 6 Machine Language Interface 6.1 Memory Allocation ........................................... 121 6.2 Internal Data Representation. .. 123 6.3 Assembly Language Interface ................................... 124 6.4 CBASIC 8-bit (8080) Demonstration Program ................... 126 6.5 CBASIC 16-bit (8086) Demonstration Program .................. 129 7 Compiling and Running CBASIC Programs 7.1 Compiler Directives ........................................... 133 7.2 Listing Control ............................................... 133 7.3 %INCLUDE Directive ........................................ 134 7.4 %CHAIN Directive........................................... 134 7.5 CBASIC Compile-time Toggles ................................ 135 7.6 Compiler Output ............................................. 137 7.7 TRACE Option .............................................. 139 7.8 Cross-Reference Lister ......................................... 140 Appendixes A Compiler Error Messages 143 B Run-time Error Messages 149 C CBASIC Key Words ............................................... 155 D Decimal-ASCII-Hex Table ......................................... 157 E Glossary ......................................................... 159 vi Table of Contents (continued) List of Tables 2-1 Hierarchy of Operators ............................................ 10 7-1 Compile-time Toggles ....................................... 137-138 7-2 Cross-reference Lister Toggle Functions ............................ 141 A-l File System and Memory Space Errors ......................... 143-144 A-2 Compilation Error Codes ..................................... 144-148 B-1 CBASIC Warning Messages ...................................... 149 B-2 CBASIC Warning Codes ......................................... 150 B-3 CBASIC Error Codes ........................................ 150-154 D-l Conversion Table ........................................... 157-158 List of Figures 5-1 Sequential File .................................................. 115 5-2 Relative File .................................................... 117 6-1 CP 1M Memory Allocation ....................................... 121 6-2 Real Number Storage ............................................ 123 6-3 Integer Storage .................................................. 124 vii viii Section 1 Getting Started With CBASIC 1.1 CBASIC Components The CBASIC system has two main components: the Compiler and the run-time Interpreter. CBASIC also provides a Cross-reference Lister. • The CBASIC Compiler translates a source program into intermediate code. Source programs must be in .BAS files. The intermediate files are .INT files. • The run-time Interpreter executes the .INT file that the Compiler generates. • The Cross-reference Lister produces an alphabetized list of identifiers used in your CBASIC program. The Cross-reference Lister is a utility program provided as a convenience. It does not affect your programs. 1.2 Program Structure CBASIC has features found in high-level languages, such as structured statements, functions, complex expressions, and data types. Some other CBASIC features are parameter passing, local and global variables, easy access to the operating system, and chaining between programs. CBASIC requires no line numbers and allows the free use of commas, spaces, and tabs to make your programs more readable. A statement number or label is needed only when the statement is referenced from another location in the program. CBASIC allows integers, decimal fractions and exponential numbers as statement labels, as in the following examples: 1 PRINT "THESE ARE VALID LINE NUMBERS" o INPUT "ENTER A NUMBER:";N 100 GO TO 100.0 100.0 END ALI.., INFORMATION PRESENTED HE.RE IS PROPR!ETARY TO DIGITAL RESEARCH 1 1.2 Program Structure CBASIC Language Reference Manual 21.543 A$ = NAME$ 7820E12 Y = 2.0 * X CBASIC statement labels do not have to be sequential. The Compiler treats the labels as strings of characters, not as numeric quantities. For example, the two labels 100 and 100.0 are distinct CBASIC statement labels. The maximum length for a statement label is 31 characters. CBASIC statements can span more than one line. Use the backslash character, \, to continue a CBASIC statement on the next line. The Compiler ignores any character that follows a backslash on the same line. The backslash does not work as a continuation character
Recommended publications
  • 8000 Plus Magazine Issue 17
    THE BEST SELLIINIG IVI A<3 AZI INI E EOF=t THE AMSTRAD PCW Ten copies ofMin^g/jf^^ Office Professional to be ISSUE 17 • FEBRUARY 1988* £1.50 Could AMS's new desktop publishing package be the best yet? f PLUS: Complete buyer's guide to word processing, accounts, utilities and DTP software jgl- ) MASTERFILE 8000 FOR ALL AMSTRAD PCW COMPUTERS MASTERFILE 8000, the subject of so many Any file can make RELATIONAL references to up enquiries, is now available. to EIGHT read-only keyed files, the linkage being effected purely by the use of matching file and MASTERFILE 8000 is a totally new database data names. product. While drawing on the best features of the CPC versions, it has been designed specifically for You can import/merge ASCII files (e.g. from the PCW range. The resulting combination of MASTERFILE III), or export any data (e.g. to a control and power is a delight to use. word-processor), and merge files. For keyed files this is a true merge, not just an append operation. Other products offer a choice between fast but By virtue of export and re-import you can make a limited-capacity RAM files, and large-capacity but copy of a file in another key sequence. New data cumbersome fixed-length, direct-access disc files. fields can be added at any time. MASTERFILE 8000 and the PCW RAM disc combine to offer high capacity with fast access to File searches combine flexibility with speed. variable-length data. File capacity is limited only (MASTERFILE 8000 usually waits for you, not by the size of your RAM disc.
    [Show full text]
  • The User's Column, December 1980, BYTE Magazine
    BASIC, Computer Languages, and Computer Adventures Jerry Pournelle c/ o BYTE Publications 70 Main St Peterborough NH 03458 It's a typical Sunday afternoon here at Chaos Manor. new users become familiar with the way computers In one room a dozen kids are playing games on the Radio think, became studded with features. Every time you Shack TRS-80, while here in the office I've been playing turned around there was a new BASIC interpreter, each about with the C programming language after adding a one larger than the last, and almost none of them com­ check-writer to my accounting programs. My wife, the patible with each other. Whatever portability BASIC had only practical member of the family, gently reminds me enjoyed vanished in a myriad of disk operations, func­ of my deadlines: galley proofs of a new novel, King tions, WHILE statements, new input formats, etc, etc, David's Spaceship (Simon and Schuster); two chapters of and, at the same time, the "free" memory left over after the latest Niven/ Pournelie collaboration, Oath of Fealty loading BASIC got so small that you couldn't handle (Simon and Schuster, Real Soon Now); plus three col­ much data. umns; a speech to a librarians' convention; and inputs for The logical end of that process is Microsoft's newest a NASA study on America's fifty-year space plan. Some BASIC-BO. Understand, it's an excellent BASIC. It has business people worry about cash flow; for authors it's features that, not long ago, the most advanced languages work flow-work comes in bunches, like bananas, and didn't have.
    [Show full text]
  • First Osborne Group (FOG) Records
    http://oac.cdlib.org/findaid/ark:/13030/c8611668 No online items First Osborne Group (FOG) records Finding aid prepared by Jack Doran and Sara Chabino Lott Processing of this collection was made possible through generous funding from the National Archives’ National Historical Publications & Records Commission: Access to Historical Records grant. Computer History Museum 1401 N. Shoreline Blvd. Mountain View, CA, 94043 (650) 810-1010 [email protected] August, 2019 First Osborne Group (FOG) X4071.2007 1 records Title: First Osborne Group (FOG) records Identifier/Call Number: X4071.2007 Contributing Institution: Computer History Museum Language of Material: English Physical Description: 26.57 Linear feet, 3 record cartons, 5 manuscript boxes, 2 periodical boxes, 18 software boxes Date (bulk): Bulk, 1981-1993 Date (inclusive): 1979-1997 Abstract: The First Osborne Group (FOG) records contain software and documentation created primarily between 1981 and 1993. This material was created or authored by FOG members for other members using hardware compatible with CP/M and later MS and PC-DOS software. The majority of the collection consists of software written by FOG members to be shared through the library. Also collected are textual materials held by the library, some internal correspondence, and an incomplete collection of the FOG newsletters. creator: First Osborne Group. Processing Information Collection surveyed by Sydney Gulbronson Olson, 2017. Collection processed by Jack Doran, 2019. Access Restrictions The collection is open for research. Publication Rights The Computer History Museum (CHM) can only claim physical ownership of the collection. Users are responsible for satisfying any claims of the copyright holder. Requests for copying and permission to publish, quote, or reproduce any portion of the Computer History Museum’s collection must be obtained jointly from both the copyright holder (if applicable) and the Computer History Museum as owner of the material.
    [Show full text]
  • 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.
    [Show full text]
  • CBASIC Compilertm (CB86™) Programmer's Guide
    CBASIC CompilerTM (CB86™) Language Programmer's Guide for the IBM® Personal Computer Disk Operating System CBASIC Compiler™( CB86 TM) Language Programmer's Guide for the IBM®personal Computer Disk Operating System Copyr ight © 1983 Digital Research P.O. Box 579 160 Central Avenue Pacific Grove, CA 93950 (408) 649-3896 TWX 910 360 5001 All Rights Reserved COPYRIGHT Copyright © 1983 by Digital Research. All rights reserved. No part of this publication maybe reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language or computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual or otherwise, without the prior written permission of Digital Research, Post Office Box 579, Pacific Grove, California, 93950. This manual is, however, tutorial in nature. Thus, the reader is granted permission to include the example programs, either in whole or in part, in his or her own programs. DISCLAIMER Dig i tal Research makes no representations or warranties with respect to the contents hereof and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose. Further, Dig i tal Research reserves the right to revise this publication and to make changes from time to time in the content hereof without obligation of Digital Research to notify any person of such revision or changes. TRADEMARKS CBASIC, CP/M, CP/M-86, and CP/NET are registered trademarks of Digital Research. CBASIC Compiler, CB80, CB86, Concurrent CP/M-86, LIB86, LINK86, MP/M, MP/M-86, PL/I-86, RASM-86, and SID-86 are trademarks of Digital Research.
    [Show full text]
  • DOCUMENT RESUME ED 269 639 CE 044 490 Welcome to the World of Computers. Part 2. Education Service Center Region 20, San Antonio
    DOCUMENT RESUME ED 269 639 CE 044 490 TITLE Welcome to the World of Computers. Part 2. INSTITUTION Education Service Center Region 20, San Antonio, Tex. PUB DATE 86 NOTE 311p.; For part 1, see CE 044 489. T'ortions of reprinted material contain small or broken type. PUB TYPE Guides - Classroom Use - Guides (For Teachers) (052) EDRS PRICE MF01/PC13 Plus Postage. DESCRIPTORS *Adult Education; Classroom Techniques; Computer Assisted Instruction; *Computer Literacy; *Computer Oriented Programs; *Computer Software; Databases; Integrated Curriculum; *Learning Activities; *Microcomputers; Postsecondary Education; Program Evaluation; Word Processing IDENTIFIERS BASIC Programing Language; Spreadsheets ABSTRACT A continuation of an earlier manual, this guidewas written to help adult education teachers and their studentsto go beyond the information of part 1 and learnmore about the uses of computers. Although this manual is directed more toward teachers and administrators than toward students, activities for studentsare provided. As in part 1, some of the manual has been writtenso that instruction can be given with or witIouta computer; it can be used in a computer literacy class or as part ofa class in some other area, such as English oz mathematics. This manual is organized in six sections. The first five sections cover the following topics: computer review; software applications (word processing, database, spreadsheets, and BASIC programming); evaluation of software (including an annotated resource guide anda software buyer's guide), graphics, and computer-assisted instruction. Each sectioncontains information (including reprints of materials froma variety of sources), learning activities for students, and test items. Materials are illustrated with line drawings. The final section contains reprints of brief articles about computer literacy.
    [Show full text]
  • Software Applications Catalog Eagle PC and Eagle 1600 April 1983
    Software Applications Catalog Eagle PC And Eagle 1600 April 1983 TABLE OF <mIDlJ.1S SECl'IOO INTRODUcrION • i GENERAL BUSINESS I ACCDUNI':W; AND INVEN'IDRY • II SPREADSHEETS/FINANCIAL • III JOB AND INDUSTRY • DATA NANAGEMENT v WORD PROCFSSI~ AND TEXT EDITI~ • VI GRAPHICS • VII DATA COMMUNICATIONS • VIII IX INDEX X This Software Application Catalog is a listing of most of the MS-DOS and CP/M-86 software offerings, known to Eagle computer as of this printing, which are available for use on the Eagle Computer models 1620, 1630 and the Eagle PC. This catalog is divided into nine categories; General Business, Accounting and Inventory, Spreadsheets/Financial, Job and Industry, Data Management, Word Processing and Text Editing, Graphics, Data Communications and Languages. However, same programs from one category may be applicable in another area. We, therefore, suggest that you carefully review each of the different categories. We have included the program name, author and a brief description. Programs included in the catalog are for informational purposes only. Inclusion does not constitute an endorsement of the product. Responsibility lies with the user in determining whether or not a program will function with his particular equipment. The purchaser is strongly urged to seek this information from the vendor and to specify his specific equipment before any purchase is made. DIS<LAI.MER Eagle Computer makes no warranties, either express or implied, with respect to the programs included herein, their quality, performance, merchantability, or fitness for any particular purpose. In no event will Eagle be liable for direct, indirect, incidental or consequential damages resulting fram any defect in the programs even if it has been advised of the possibility of such damages.
    [Show full text]
  • Graphics Guide CBASIC® Compiler Language Graphics Guide
    CBASIC Compiler™ Language Graphics Guide CBASIC® Compiler Language Graphics Guide Copyr ight © 1983 Digital Research P.O. Box 579 801 Lighthouse Avenue Pacific Grove, CA 93950 TWX 910 360 5001 All Rights Reserved COPYRIGHT Copyright ~ 1983 by Digital Research. All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language or computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual or otherwise, without the prior written permission of Digital Research, Post Office Box 579, Pacific Grove, California, 93950. DISCLAIMER Dig i tal Research makes no represen ta tions or warranties with respect to the contents hereof and specifically disclaims any implied warranties of merchantabil i ty or fitness for any particular purpose. Further, Dig i tal Research reserves the right to revise this publication and to make changes from time to time in the content hereof without obligation of Digital Research to notify any person of such revision or changes. TRADEMARKS CP/M and CBASIC are registered trademarks of Digital Research. CBASIC Compiler, CB80, GSX, GSX-86, and LK80 are trademarks of Digital Research. The CBASIC Compiler Language Graphics Guide was prepared using the Digital Research TEX Text Formatter and pr inted in the United States of America. ********************************* * First Edition: May 1983 * ********************************* Foreword CBASIC® Compiler is' Digital Research's powerful compiler version of CBASIC, the commercial BASIC dialect recognized as the industry standard. With CBASIC Compiler's comprehensive, graphics extensions, you can now write versatile graphics programs for a multitude of applications.
    [Show full text]
  • The Commodore 128 1 What's in This Book 2 the Commodore 128: Three Computers in One 3 the C128 Mode 6 the CP/M Mode 9 the Bottom Line 9
    The Official Book T {&~ Commodore \! 128 Personal Computer - - ------~-----...::.......... Mitchell Waite, Robert Lafore, and Jerry Volpe The Official Book ~~ Commodore™128 Personal Computer Howard W. Sams & Co., Inc. A Subsidiary of Macmillan, Inc. 4300 West 62nd Street, Indianapolis, Indiana 46268 U.S.A. © 1985 by The Waite Group, Inc. FIRST EDITION SECOND PRINTING - 1985 All rights reserved. No part of this book shall be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical. photocopying, recording, or otherwise, with­ out written permission from the publisher. No patent liability is assumed with respect to the use of the information contained herein. While every precaution has been taken in the preparation of this book, the publisher assumes no responsibility for errors or omissions. Neither is any liability assumed for damages resulting from the use of the information contained herein. International Standard Book Number: 0-672-22456-9 Library of Congress Catalog Card Number: 85-50977 Illustrated by Bob Johnson Typography by Walker Graphics Printed in the United States of America The Waite Group has made every attempt to supply trademark information about company names, products, and services mentioned in this book. The trademarks indicated below were derived from various sources. The Waite Group cannot attest to the accuracy of this information. 8008 and Intel are trademarks of Intel Corp. Adventure is a trademark of Adventure International. Altair 8080 is a trademark of Altair. Apple II is a registered trademark of Apple Computer, Inc. Atari and Atari 800 are registered trademarks of Atari Inc. Automatic Proofreader is a trademark of COMPUTE! Publications.
    [Show full text]
  • Njit-Etd2003-106
    Copyright Warning & Restrictions The copyright law of the United States (Title 17, United States Code) governs the making of photocopies or other reproductions of copyrighted material. Under certain conditions specified in the law, libraries and archives are authorized to furnish a photocopy or other reproduction. One of these specified conditions is that the photocopy or reproduction is not to be “used for any purpose other than private study, scholarship, or research.” If a, user makes a request for, or later uses, a photocopy or reproduction for purposes in excess of “fair use” that user may be liable for copyright infringement, This institution reserves the right to refuse to accept a copying order if, in its judgment, fulfillment of the order would involve violation of copyright law. Please Note: The author retains the copyright while the New Jersey Institute of Technology reserves the right to distribute this thesis or dissertation Printing note: If you do not wish to print this page, then select “Pages from: first page # to: last page #” on the print dialog screen The Van Houten library has removed some of the personal information and all signatures from the approval page and biographical sketches of theses and dissertations in order to protect the identity of NJIT graduates and faculty. ABSTRACT PROGRAMMING LANGUAGE TRENDS: AN EMPIRICAL STUDY by Yaofei Chen Predicting the evolution of software engineering technology trends is a dubious proposition. The recent evolution of software technology is a prime example; it is fast paced and affected by many factors, which are themselves driven by a wide range of sources.
    [Show full text]
  • Summary Guide
    CP/M SUMMARY GUIDE r FOR VERSION 1.4 & 2.0 :• ..-. EDITED BY BRUCE A. BRIGHAM The Rosetta Stone CP/M is a registered trademark of Digital Research INTRODUCTION Some of the information contained in this booklet was extracted from various manuals written by Digital Research, Compiler Systems Inc. and Microsoft. All paraphrased material contained in the CP/M® portion was used with permission of Digital Research, holder of the copyright. All paraphrased material contained in the CBASIC ™ portion was used with permission of Compiler Systems Inc., holder of the copyright. The BASIC-80 portion is Copyrighted (C) 1979 Microsoft and reprinted with permission. CBASIC-2 and Microsoft BASIC-80 are individually alphabetized by name which interlaces string functions, commands, arithmetic functions and so on. This kind of "total alphabetizing" saves time and eliminates the need for an index. It is not intended to be used as a learning guide and only has limited explanations and examples. if more detail is needed, the user should consult his/her user manual. We welcome any and all criticism. This guide will be kept up-to-date as new software releases are received from the various producers. COPYRIGHT NOTICE: Copyright (C) 1980 by The Rosetta Stone. No part of this publica- tion may be reproduced, transmitted or stored in a retrieval system without the express permission of The Rosetta Stone P.O. Box 35, Glastonbury, CT 06025. CP/M® is a registered trademark of Digital Research. CBASIC™ is a registered trademark of Compiler Systems. TABLE OF CONTENTS
    [Show full text]
  • Appendix a CP/M Software
    Appendix A CP/M Software A major feature of the PCW8256/8512 is that it uses the CP/M operating system which means you can use a wide range of standard software products. Note that some of this software requires a second disk drive. Because new software is continually being made available for these machines it is impossible to produce a complete list. However, it is hoped that this list (compiled in Summer 1986) will demonstrate that the PCW is more than just a Word Processor! TITLE FROJ[ TYPE ABC Suite Quest Sales Invoicing Sales Ledger Stock Control Purchase Ledger Nominal Ledger A.B.C.S. Amsoft Sales/Debtors Ledger Sales Invoicing System Stock Control System Purchase/Creditors Ledger Nominal/General Ledger Amstrad Paymaster Amsoft Payroll system Analyser Quest Report generator (see Cash Trader) Assembler Plus MicroSoft Programming tool Aztec C II Manx Programming tool Back-up Xitan Copy utility BASIC Nevada Programming language BASIC Compiler MicroSoft Programming language Brainstorm Caxton Ideas processor 3-D scratchpad CBASIC Compiler Digital Research Programming language compiler 153 154 Word Processing with Amstrad C BDS Programming language compiler C HiSoft Programming language compiler CalcStar MicroPro Spreadsheet Camsoft Business Camsoft Database Software Nominal Ledger Payroll Purchase Ledger Sales Invoicing Sales Ledger Stock Control Cardbox Caxton Database Cardbox Plus Cash Trader Quest Accounting package (see Analyser) Catalog HiSoft Disk organiser Chit-Chat SageSoft Communications CIS-COBOL MicroFocus Programming language Classic Adventure Abersoft Text adventure game COBOL Microsoft Programming language Compact Accounts Compact Software Accounting packages Compact Daybook DataGem Gemini Database DataStar MicroPro Database dBaseII Ashton-Tate Database Del ta 1.
    [Show full text]