Mallard BASIC: Introduction and Reference

Total Page:16

File Type:pdf, Size:1020Kb

Mallard BASIC: Introduction and Reference Mallard BASIC For the Amstrad PCW8256/8512 & PCW9512 LOCOMOTIVE Introduction SOFTWARE and Reference Mallard BASIC Introduction and Reference The world speed record for a steam locomotive is held by LNER 4-6-2 No. 4468 “Mallard”, which hauled seven coaches weighing 240 tons over a measured quarter mile at 126 mph (202 kph) on 3rd July 1938. LOCOMOTIVE SOFTWARE © Copyright 1987 Locomotive Software Limited All rights reserved. Neither the whole, nor any part of the information contained in this manual may be adapted or reproduced in any material form except with the prior written approval of Locomotive Software Limited. While every effort has been made to verify that this software works as described, it is not possible to test any program of this complexity under all possible circumstances. Therefore Mallard BASIC is provided ‘as is’ without warranty of any kind either express or implied. The particulars supplied in this manual are given by Locomotive Software in good faith. However, Mallard BASIC is subject to continuous development and improvement, and it is acknowledged that there may be errors or omissions in this manual. Locomotive Software reserves the right to revise this manual without notice. Written by Locomotive Software Ltd and Ed Phipps Documentation Services Produced and typeset electronically by Locomotive Software Ltd Printed by Grosvenor Press (Portsmouth) Ltd Published by Locomotive Software Ltd Allen Court Dorking Surrey RH4 1YL 2nd Edition Published 1987 (Reprinted with corrections May 1989) ISBN 185195 009 5 Mallard BASIC is a trademark of Locomotive Software Ltd LOCOMOTIVE is a registered trademark of Locomotive Software Ltd AMSTRAD is a registered trademark of AMSTRAD plc IBM is a registered trademark of Intemational Business Machines Corp CP/M-80, CCP/M-86 and MP/M-86 are trademarks of Digital Research Inc MS-DOS is a trademark of Microsoft® Corporation VT52 is a trademark of Digital Equipment Corp Preface This book describes how to use Locomotive Software's Mallard BASIC interpreter to write and use BASIC programs on your Amstrad PCW. BASIC was originally designed many years ago as a programming language that was simple to learn, as an aid to teaching computer programming. There are now many versions of BASIC, developed from this original. Mallard BASIC is a powerful modern BASIC with a number of significant improvements. In particular, Mallard BASIC has a very unusual facility (for BASICs on microcomputers) for indexing data stored in a file, and automatically keeping this index in alphabetical order. This is a very useful facility to have in a program that works with a database. BASIC is very versatile and can be used to perform most tasks involving manipulating numbers and text. The simplest use of BASIC is as a sophisticated calculator, but you can quickly move on from this to using BASIC to write programs. Programs can perform an infinite range of tasks, from simple things such as totalling sequences of figures to complex tasks such as maintaining a personnel file, calculating payrolls or performing statistical analyses. You can use programs written by others (of which a wide range are available) or write your own, once you have learned how to program. The copy of BASIC on your CP/M disc is set up ready for use on your machine. To use it, you just have to load CP/M and type the command BASIC (Retay]. You then have access to all the facilities of BASIC described in this manual — including the screen-based editor which displays your program lines as you change them. About this manual This manual is designed to help you use Mallard BASIC. It is divided into two parts: Part I: A gentle introduction, suitable for new users including those who have never written a computer program before. Part II: A reference section containing a detailed description of all the facilities of BASIC. Mallard BASIC: Introduction The Introduction takes the user from using BASIC as a simple calculator, through writing simple programs (for example, to print the result of a simple calculation), to preparing fully-featured programs that manipulate complex data files. The Reference section describes BASIC in detail. It is aimed at experienced users who have used other BASICs before or who have read and understood the Introduction. Many of the operations described in this manual are concerned with manipulating numbers and text, but not all. For example, we show you how to position the cursor on the screen or clear the screen and how to control the printer from your program — setting the page length, positions of tabs and even resetting the printer from inside your BASIC program. We also show you how to incorporate machine language routines in your program and how to call up external routines, such as those within the operating system itself. For example, we show you how to use these techniques to generate graphics effects by using GSX, the graphics extension to CP/M. If you are entirely new to BASIC Start by reading through the Introduction, working through the examples on your computer as you do so. You may, if you wish, just read up to the end of Chapter 5 if you don't want to work with files initially. By the end of the Introduction, you should be able to write simple but useful BASIC programs with occasional help from the Reference section. To discover how to use the full range of facilities offered by Mallard BASIC, you should then read Part II. Although Part I covers the most useful facilities of BASIC, it does so at the fairly elementary level, with the emphasis on understanding rather than complete technical detail. Part II gives the definitive description of Mallard BASIC. If after reading Part I you need more help to understand programming, you should turn to one of the many excellent tutorial texts that are available. Ask your dealer for details. If you have programmed in BASIC before You probably won't need to read Part I in any detail, except perhaps for Chapter 7 which describes the very powerful Keyed File Handling (JETSAM) provided by Mallard BASIC. Concentrate instead on the Reference section which is intended to describe Mallard BASIC, fully and accurately. This includes in Chapter 10 the formal specification of each of the commands and functions in keyword order. Mallard BASIC: Introduction Different versions of Mallard BASIC Mallard BASIC is available in different versions for use with different operating systems working on different processors. In particular, there are separate versions for 8-bit processors like the Z80 and 8080 (Mallard-80), for 16-bit processors like the 8088 and 8086 (Mallard-86); and there are multi-user versions of Mallard-86 for use on networks of 16-bit machines. There are also Run-Only versions available. Part I of this manual is tailored to the version of Mallard BASIC supplied on the Amstrad PCW machines, but Part II can be used with any version of Mallard BASIC. However, you should note that a few of the commands only have an effect in certain versions. Where this is the case, this is mentioned in the text. At the time of printing, the following versions are available: 8-bit Single User version (Mallard-80) for CP/M 2.2 and CP/M Plus 16-bit Single User versions (Mallard-86) for MS-DOS version 1 for MS-DOS version 2 and above for CP/M-86 16-bit Multi-User versions (Multi-User Mallard-86) for MS-DOS 3.2 and above with MS-NET for TurboDOS for Concurrent CP/M and Concurrent DOS Note that Multi-User versions are only available for 16-bit machines. Conventions Throughout this description of BASIC, various conventions are used to represent different types of information. The principal conventions are as follows: INPUT, PRINT, etc. The names of BASIC's commands and functions INPUT, PRINT etc.) are shown in this manual in capital letters. They are also always displayed in capitals when programs are listed. It does not matter whether you type these names as capitals or as lower case letters: they are automatically converted to capitals when BASIC stores the program. Mallard BASIC: Introduction see GOTO, see FIND$, etc. Further information is given where the given topic (GOTO, FIND$ etc.) is described. Use the index to find the relevant page to look at. text in this style This style of text is used to indicate something to type or something displayed on the screen, in order to distinguish it from descriptive text. descriptions-in-italic Italic text is used for descriptions of the type of information that is required, rather than the information itself. For example, number could be 1 or 2 or 3 etc. If the description of a single item is more than one word long, the words are joined by hyphens: for example, line-number. The majority of descriptions are explained in the accompanying text. The remainder are self-explanatory. The common descriptions are listed in the introduction to Chapter 10 in Part II, the overview of BASIC's commands and functions. [items in slanted brackets] Slanting brackets round an item are used to show that this item is optional. Normally, including the item and omitting the item produce different effects. The brackets themselves should always be omitted. , Cc. These graphics are used to represent individual keys on the keyboard. For example, represents the Return key — not the letters RETURN. (Additional conventions used in the Reference Section are described at the beginning of Part IT.) Mallard BASIC; Introduction Part I INTRODUCTION Mallard BASIC CONTENTS 1. Starting with BASIC 1.1 Entering BASIC LZ Leaving BASIC L.3 Using BASIC 1.4 Giving BASIC commands iS Types of information 1.6 Chapter review rH = NWNnNNR 2.
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]
  • MAKING CODE ZERO Part 2
    October 2018 Issue 23 PLUS MAKING CODE ZERO part 2 Includes material PLAY BLACKPOOL not in the video Report from the show! event... CONTENTS 32. RECREATED SPECTRUM Is it any good? 24. MIND YOUR LANGUAGE 18. Play Blackpool 2018 Micro-Prolog. The recent retro event. FEATURES GAME REVIEWS 4 News from 1987 DNA Warrior 6 Find out what was happening back in 1987. Bobby Carrot 7 14 Making Code Zero Devils of the Deep 8 Full development diary part 2. Spawn of Evil 9 18 Play Blackpool Report from the recent show. Hibernated 1 10 24 Mind Your Language Time Scanner 12 More programming languages. Maziacs 20 32 Recreated ZX Spectrum Bluetooth keyboard tested. Gift of the Gods 22 36 Grumpy Ogre Ah Diddums 30 Retro adventuring. Snake Escape 31 38 My Life In Adventures A personal story. Bionic Ninja 32 42 16/48 Magazine And more... Series looking at this tape based mag. And more…. Page 2 www.thespectrumshow.co.uk EDITORIAL Welcome to issue 23 and thank you for taking the time to download and read it. Those following my exploits with blown up Spectrums will be pleased to I’ll publish the ones I can, and provide hear they are now back with me answers where fit. Let’s try to get thanks to the great service from Mu- enough just for one issue at least, that tant Caterpillar Games. (see P29) means about five. There is your chal- Those who saw the review of the TZX All machines are now back in their lenge. Duino in episode 76, and my subse- cases and working fine ready for some quent tweet will know I found that this The old school magazines had many filming for the next few episodes.
    [Show full text]
  • M the Official Amstrad Business Magazine
    Vol. 1 No. 4 December 1986 AMSTRAD£1.25 | COMPUTING- V; ■ I mm m >■ V aL- The Official Amstrad Business Magazine The Condor 1 Commands - They couldn’t be simpler! Database Creation and Maintenance DEFINE Create, redefine or describe a database DESTROY Eliminate a database or file FORMAT Create or revise a form or HELP screen REORG Reorganize the structure of a database; add or delete items Information Input and Update APPEND Attach records of one database to another EMPTY Eliminate all data in a database ENTER Insert new data into a database POST Update entries in one database with those from another UPDATE Change entries in a J--.abase meeting specified cni Jiiitions Informations* ssingand Report Writing COMPARE ' ;v*i.*are orgies in two ■■■...•.vjfcsfa- /not) n • hing o editions and The Database Manager and Reporter. c. < RE ;• i JLT database COMPUTE . ie<: iesina You know that Caxton only publish superior software products. LIST 0; datf.'i j;,se records in Cardbox is the world’s best-selling simple electronic card index. sesjc :?-^er Brainstorm is the world’s first ideas processor. Scratchpad plus is the PRINT Pirfctf. shtab^va records in ewisr only enhanced Virtual Memory Spreadsheet available foryour PRINTER Pri; ;lei output control and Amstrad. And Touch ’n’ Go is the UK’s most highly respected disk- refection SELECT Select database records based typing T\itor. meeting specified conditions, creating a Now we present Condor 1 - Mainframe computing for your Amstrad. RESULT database SORT Sort database records by Condor 1 is an extensive database management and reporting system entries STAX View or print statistics of for the non-programmer.
    [Show full text]
  • Retro Gamer Speed Pretty Quickly, Shifting to a Contents Will Remain the Same
    Untitled-1 1 1/9/06 12:55:47 RETRO12 Intro/Hello:RETRO12 Intro/Hello 14/9/06 15:56 Page 3 hel <EDITORIAL> >10 PRINT "hello" Editor = >20 GOTO 10 Martyn Carroll >RUN ([email protected]) Staff Writer = Shaun Bebbington ([email protected]) Art Editor = Mat Mabe Additonal Design = Mr Beast + Wendy Morgan Sub Editors = Rachel White + Katie Hallam Contributors = Alicia Ashby + Aaron Birch Richard Burton + Keith Campbell David Crookes + Jonti Davies Paul Drury + Andrew Fisher Andy Krouwel + Peter Latimer Craig Vaughan + Gareth Warde Thomas Wilde <PUBLISHING & ADVERTISING> Operations Manager = Debbie Whitham Group Sales & Marketing Manager = Tony Allen hello Advertising Sales = elcome Retro Gamer speed pretty quickly, shifting to a contents will remain the same. Linda Henry readers old and new to monthly frequency, and we’ve We’ve taken onboard an enormous Accounts Manager = issue 12. By all even been able to publish a ‘best amount of reader feedback, so the Karen Battrick W Circulation Manager = accounts, we should be of’ in the shape of our Retro changes are a direct response to Steve Hobbs celebrating the magazine’s first Gamer Anthology. My feet have what you’ve told us. And of Marketing Manager = birthday, but seeing as the yet to touch the ground. course, we want to hear your Iain "Chopper" Anderson Editorial Director = frequency of the first two or three Remember when magazines thoughts on the changes, so we Wayne Williams issues was a little erratic, it’s a used to be published in 12-issue can continually make the Publisher = little over a year old now.
    [Show full text]
  • Acorn User 1986 Covers and Contents
    • BBC MICRO ELECTRON’ATOMI £1.20 EXJANUARY 1986 USB* SPECTRAIYIANIA: Zippy game for Electron and BBC LOGO SOFTWARE: Joe Telford writes awordprocessor HyfHimm,H BBC B+ PROGRAMS: Our advanced HdlilSIii t user’s guide mm BASIC AIDS: pjpifjBpia *- -* ‘‘.r? r v arwv -v v .* - The hard facts about debuggers WIN AT ELITE: Secrets of the Commander files SUPER Forget the rest, our graphics program’s best! COMPETITION Three Taxan monitors to be won COUPON OFFER Save £20 on a Kaga NLQ printer ISSUEACORNUSERNo JANUARY 1986 42 EDITOR Tony Quinn NEW USERS 48 TECHNICAL EDITOR HINTS AND TIPS: Bruce Smith Martin Phillips asks how compatible are Epson compatible printers? 53 SUBEDITOR FIRST BYTE: Julie Carman How to build up your system wisely is Tessie Revivis’ topic PRODUCTION ASSISTANT Kitty Milne BUSINESS 129 EDITORIAL SECRETARY BUSINESS NEWS: Isobel Macdonald All the latest for users of Acorn computers in business, plus half-price Mallard Basic offer PROCESS: 133 TECHNICAL ASSISTANT WHICH WORD TO David Acton Guidelines from Roger Carus on choosing a wordprocessor to fulfil your business needs 139 ART DIRECTOR BASIC CHOICES: Mike Lackersteen Edward Brown compares BBC Basic and Mallard Professional Basic, supplied with the Z80 ART EDITOR Liz Thompson EDUCATION EDUCATION NEWS: 153 ART ASSISTANT questions Paul Holmes Proposed European standard for educational micros raises many OF WORDPROCESSING: 158 ADVERTISEMENT MANAGER THE WONDER Simon Goode Chris Drage and Nick Evans look at wordprocessors to help children express themselves j SALES EXECUTIVE j ;
    [Show full text]
  • COBOL – an Introduction
    COBOL – An Introduction identification division. program-id. COBOL-Workshop. author. Mike4 Harris. procedure division. display "Hello OxDUG!". My Programming Background ● Started with ZX BASIC on ZX81 and ZX Spectrum ● Moved on to Mallard BASIC (Amstrad PCW) and then to (the excellent and still my favourite) GFA BASIC (Atari ST) ● Learnt Pascal, C, Ada, C++, and OCCAM at University ● Learnt Java professionally, then never used it much ● For my sins, programmed in Perl and PHP for (far too many) years. ● Also wrote bad JavaScript, tried to learn good JavaScript, and toyed with stuff like AngularJS, Node.js and React.js ● Done some Python (nice) and Ruby (hmm) ● Basically messed about with lots of languages over the years COBOL - History ● COmmon Business Orientated Language (Completely Obsolete Business Orientated Language?) ● “Invented” by Grace Hopper, who was the inventor of FLOW-MATIC. ● Standardised between 1959 and 1960 by our friends at the Pentagon by the group CODASYL. ● Design goal was to be platform and proprietor independent. COBOL - History ● Appeared in 1959. ● CODASYL COBOL-60 ● ANSI COBOL-68 ● ANSI COBOL-74 (at this point the most used language in world) ● ANSI COBOL-85 (structured programming additions) ● ISO COBOL-2002 (object orientated additions) ● ISO COBOL-2014 (dynamic tables and modular features) Genealogy COBOL: pros & cons ● It's arguably very well adapted to its domain ● There's a LOT of legacy code, which is of finance and mass data processing. spaghetti-like (but then there's a lot of JavaScript like that!) ● It's verbose and this helps readability of code and thus is said to be self-documenting.
    [Show full text]
  • DCCUMENT RESUME ED 324 905 FL 018 370 AUTHOR Burke, Sally
    DCCUMENT RESUME ED 324 905 FL 018 370 AUTHOR Burke, Sally; Ticher, Paul TITLE Multi-lingual Word Processing and Voluntary Organisations: Report of a Conference (1st, London, England, June 1988). INSTITUTION Community Information Project, London (England). SPONS AGENCY London Borough Grant Scheme (England). REPORT NO ISBN-0-946386-02-1 PUB DATE Sep 88 NOTE 32p. PUB TYPE Collected Works - Serials (022) EDRS PRICE MF01 Plus Postage. PC Not Available from EDRS. DESCRIPTORS *Community Involvement; *Computer Software; Feedback; Foreign Countries; *Multilingualism; *Voluntary Agencies; *Word Processing IDENTIFIERS Community Information Project (England) ABSTRACT This is a report of the first national exhibition and conference on multilingual uord processing in voluntary organizations and community groups held in London, England in June 1988. The keynote speech of the conference, "Why Multi-ethnic Systems Matter" and a speech entitled "What Users and Manufacturers Snould Be Talking About" are included in the report, as well as a summary of the conference and exhibition Feedback and evaluation by participants about the conference are also provided. Appended materials include lists of conference exhibitors and participating organizations, and an article, reproduced from a newsletter, on multilingual word processing. (VWL) *********************************************************************** Reproductions supplied by EDRS are the best that can be made from the original document. ********************************************************w************
    [Show full text]
  • Mein Schneider CPC
    Mein Schneider CPC Norbert Hesselmqnn Christoph Hesselmonn Mein Schneider CPC Mein Schneider CPC Norbert Hesselmann Christoph Hesselmann DUSSELDORF . BERKELEY . PARIS Umschlagentwurf: Daniel Boucherie/tgr Satz: tgr - typo-grafik-repro gmbh, Remscheid Gesamtherstellung: Boss-Druck und Verlag, Kleve Der Verlag hat alle Sorgfalt walten lassen, um vollständige und akkurate Informationen zu publizieren. SYBEX-Verlag GmbH, Düsseldorf , übernimmt keine Verantwortung für die Nutzung dieser Informa- tionen, auch nicht für die Verletzung von Patent- und anderen Rechten Dritter, die daraus resultieren. ISBN 3-88745-602-5 1. Auflage 1985 Alle Rechte vorbehalten. Kein Teil des Werkes darf in irgendeiner Form (Druck, Fotokopie, Mikro- film oder einem anderen Verfahren) ohne schriftliche Genehmigung des Verlages reproduziert oder unter Verwendung elektronischer Systeme verarbeitet, vervielfältigt oder verbreitet werden. Printed in Germany Copyright @ 1985 by SYBEX-Vertag GmbH' Düsseldorf 5 Inhaltsverzeichnis Vorwort 9 Einleitung 10 Kapitel l: Der Schneider CPC4ffilffi 13 Ubersicht 13 Die Komponenten des Grundsystems t3 I)ie Verhindungen zur Anßenwelt 15 Der Druckeranschluß 16 Der Erweiterungsanschluß . 18 Der Kassettenrecorder als externer Massenspeicher 79 Die Tonausgabe 20 Ein Blick ins Innere 21 Kapitel 2z Die ersten Kontakte 23 Ubersicht 23 Die Organisation der Bildschirmdarstellung 23 Mehr über die Definition und Zuordnung von Farben 32 Der Transparentmodus JJ Fenstertechniken 34 Tasten und Tastenfunktionen 37 Vereinbarung von Funktionstasten 42
    [Show full text]
  • OF the 1980S
    THAT MADE THE HOME COMPUTER REVOLUTION OF THE 1980s 23 THAT MADE THE HOME COMPUTER REVOLUTION OF THE 1980s First published in 2021 by Raspberry Pi Trading Ltd, Maurice Wilkes Building, St. John’s Innovation Park, Cowley Road, Cambridge, CB4 0DS Publishing Director Editors Russell Barnes Phil King, Simon Brew Sub Editor Design Nicola King Critical Media Illustrations CEO Sam Alder with Brian O Halloran Eben Upton ISBN 978-1-912047-90-1 The publisher, and contributors accept no responsibility in respect of any omissions or errors relating to goods, products or services referred to or advertised in this book. Except where otherwise noted, the content of this book is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported (CC BY-NC-SA 3.0). Contents Introduction. 6 Research Machines 380Z. 8 Commodore PET 2001. 18 Apple II. 36 Sinclair ZX80 and ZX81. 46 Commodore VIC-20 . 60 IBM Personal Computer (5150). 78 BBC Micro . 90 Sinclair ZX Spectrum. 114 Dragon 32. 138 Commodore 64. 150 Acorn Electron . .166 Apple Macintosh . .176 Amstrad CPC 464. 194 Sinclair QL . .210 Atari 520ST. 222 Commodore Amiga. 234 Amstrad PCW 8256. 256 Acorn Archimedes . .268 Epilogue: Whatever happened to the British PC? . .280 Acknowledgements . 281 Further reading, further viewing, and forums. 283 Index . .286 The chapters are arranged in order of each computer’s availability in the UK, as reflected by each model’s date of review in Personal Computer World magazine. Introduction The 1980s was, categorically, the best decade ever. Not just because it gave us Duran Duran and E.T., not even because of the Sony Walkman.
    [Show full text]
  • Golden Chalice Golden Amulet Golden Shield
    1991/1992 GOLDEN CHALICE AWARDS GOLDEN CHALICE *** Best Overall Game *** KNIGHTMARE (Mindscape) GOLDEN AMULET Best 16-bit Adventure Game THE SECRET OF MONKEY ISLAND (US Gold/Lucasfilm) GOLDEN SHIELD Best 8-bit Adventure Game THE AXE OF KOLT (FSF Adventures) GOLDEN SWORD Best Role-playing Game EYE OF THE BEHOLDER (US Gold/SSI) GOLDEN ORB Best Simulation Game RAILROAD TYCOON (Microprose) GOLDEN TALISMAN Best Strategy Game MIDWINTER II (Microprose/Rainbird) GOLDEN CROWN Best Utility THE ADVENTURE GAME TOOLKIT (Softworks) SOFTWARE COMPANY OF THE YEAR: MICROPROSE *** 1992/1993 GOLDEN CHALICE AWARDS GOLDEN CHALICE *** Best Overall Game *** ULTIMA UNDERWORLD (Mindscape/Origin) GOLDEN AMULET Best 16-bit Adventure Game MONKEY ISLAND II: LECHUCK'S REVENGE (US Gold) GOLDEN SHIELD Best 8-bit Adventure Game THE TAXMAN COMETH (WoW Software/Zenobi) GOLDEN SWORD Best Role-playing Game EYE OF THE BEHOLDER II (US Gold/SSI) GOLDEN ORB Best Simulation Game A-TRAIN (Ocean/Maxis) GOLDEN TALISMAN Best Strategy Game CIVILIZATION (Microprose) SOFTWARE COMPANY OF THE YEAR: US GOLD 021/A-ll USEFUL ADDRESSES ACCOLADE EUROPE LTD: Bowling House, Point Pleasant, Wandsworth, London SW18 1PE Tel: 081 877 0880 ADVENTURE PROBE: 52 Burford Rd, Liverpool L16 6AQ ADVENTURE SOFT (UK) LTD: P.O. Box 786, Sutton Coldfield, west Midlands B75 7SL Tel: 021 352 0847 THE ADVENTURE WORKSHOP: 36 Grasmere Rd, Roy ton, Oldam, Lancashire OL2 6SR BORPHEE COMPUTERS: 64 County Road, Ormskirk, Lancashire L39 1QH COMPASS SOFTWARE: 111 Mill Rd, Cobholm Island, Gt Yarmouth, Norfolk NR31 OBB CORE
    [Show full text]
  • The Amstrad Ppc Character
    TheAmstrad Portable PPC 512 /640 User Instructions t/t> '-/ E'1~ Krbl/ 5of .J Klov1e ~d. 7 o+r, c e. Pfa 7 a. 1) r, 'v-f -_.,,_._Ta..llu ~u.(Su) ft- ?J").. ?Jo/ ~ 68! '. Ff tl.aA J h.-Of~ I .i rry '2- yoi:;, o/c. >(hoD~ (Cf<c. I AMSTRADplc AMSTRADPPC USER MANUAL (USA) qqq o 11'-/ I 'fOO @ Manual Copyright 1988, AMSTRAD plc Neither the whole nor any part of the information contained herein, nor the product described in this manual may be adapted or reproduced in any material fonn except with the prior written approval of AMSTRAD plc('AMSTRAD'). The product described in this manual and products for use with it are subject to continuous development and improvement. In particular, there may be differences between the messages displayed on your screen and those shown here. All information of a technical nature and particulars of the product and its use (including the information and particulars in this manual) are given by AMSTRAD in good faith. However, it is acknowledged that there may be errors or omissions in this manual. AMSTRAD welcomes comments and suggestions relating to the product or this manual. All correspondence should be addressed to: AMSTRAD INC AMSTRAD National Service Center 1915 HARRISON ROAD LONGVIEW TX 75604 All maintenance and service on the product must be carried out by AMSTRAD authorised dealers. AMSTRAD cannot accept any liability whatsoever for any loss or damage caused by service or maintenance by unauthorised personnel. This manual is intended only to assist the reader in the use of the product, and therefore AMSTRAD shall not be liable for any loss or damage whatsoever arising from the use of any information or particulars in, or any error or omission in, this manual or any incorrect use of the product.
    [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]