About This Manual

Total Page:16

File Type:pdf, Size:1020Kb

About This Manual About this manual 5a Summary of contents This manual gives you detailed information on RISC OS 3.5 and RISC OS 3.6, so that you can write programs to run on Acorn computers that use them. It must be used in conjunction with the RISC OS 3 Programmer’s Reference Manual, and is produced as a replacement for the earlier volume 5 in the set that described RISC OS 3.5 only. The pages are numbered ‘5a-n’ rather than ‘5-n’ to distinguish references to the two different versions. This manual only tells you about the differences between RISC OS 3.1, RISC OS 3.5 and RISC OS 3.6. Many cross references are given between this volume and the earlier volumes so that you can always refer to the main topic to obtain further information. The layout of chapters We’ve laid out the information in this manual as consistently as possible, to help you find what you need. Each chapter covers a specific topic, and in general includes: ● an Introduction, so you can tell if the chapter covers the topic you are looking for ● an Overview, to give you a broad picture of the topic and help you to learn it for the first time ● Technical Details, to use for reference once you have read the Overview ● SWI calls, described in detail for reference ● * Commands, described in detail for reference ● Application notes, to help you write programs ● Example programs, to illustrate the points made in the chapter, and on which you can base your own programs. Appendix C: Errata and omissions for RISC OS 3 PRM This appendix (on page 5a-667) contains a list of errata and omissions for the RISC OS 3 Programmer’s Reference Manual. We suggest you add to your copy either the corrections themselves, or a reference to them. 5a-x Conventions used Indexes The separate volume of Indexes replaces that supplied with the RISC OS 3 Programmer’s Reference Manual, and references all five volumes. It contains: ● an index of * Commands ● an index of OS_Byte calls ● an index of OS_Word calls ● a numeric index of service calls ● an alphabetic index of service calls ● a numeric index of SWI calls ● an alphabetic index of SWI calls ● an index by subject. Conventions used Certain conventions are used in this manual: Hexadecimal numbers Hexadecimal numbers are extensively used. They are always preceded by an ampersand. They are often followed by the decimal equivalent which is given inside brackets: &FFFF (65535) This represents FFFF in hexadecimal, which is the same as 65535 in ordinary decimal numbers. Typefaces Courier type is used for the text of example programs and commands, and any extracts from the RISC OS source code. Since all characters are the same width in Courier, this makes it easier for you to tell where there should be spaces. Bold Courier type is used in some examples to show input from the user. We only use it where we need to distinguish between user input and computer output. Command syntax Special symbols are used when defining the syntax for commands: ● Italics indicate that you must substitute an actual value. For example, filename means that you must supply an actual filename. ● Braces indicates that the item enclosed is optional. For example, [K] shows that you may omit the letter ‘K’. 5a-xi About this manual ● A bar indicates an option. For example, 0|1 means that you must supply the value 0 or 1. Programs Many of the examples in this manual are not complete programs. In general: ● BBC BASIC examples omit any line numbering ● BBC BASIC Assembler programs do not show the structure needed to perform the assembly ● ARM Assembler programs assume that header files have been included that define the SWI names as manifests for the SWI numbers. ● C programs assume that similar headers are included; they also do not show the inclusion of other headers, or the calling of main(). Finding out more For how to set up and maintain your computer, refer to the Welcome Guide supplied with your computer. The Welcome Guide also contains an introduction to the desktop which new users will find particularly helpful. For details on the use of your computer and of its application suite, refer to the RISC OS 3 User Guide supplied with it. If you wish to write BASIC programs on your RISC OS computer you will find the BBC BASIC Reference Manual useful. Your Acorn supplier has available the Acorn C/C++ product, which you can use to write programs in C, C++, and ARM assembler. The product runs in a desktop environment with full supporting tools. It also provides the User Interface Toolbox, making it much easier to design and code a desktop application’s user interface; for more details see The Toolbox modules on page 5a-657. Technical Reference Manuals are available for all but the oldest of Acorn RISC OS computers. These describe the hardware in full, including such things as parts lists and circuit diagrams. Reader comments If you have any comments on this Manual, please complete and return the form on the last page of the volume of Indexes to the address given there. 5a-xii Reader comments 5a-xiii Part 15 – The kernel The kernel The 5a 5a-1 5a-2 98 Introduction to RISC OS 3.5 and RISC OS 3.6 kernel The 5a Introduction RISC OS 3.5 is an operating system written by Acorn for its Risc PC computers that use the new ARM600 / ARM700 hardware architecture. This version was only changed where it was necessary to support the changing hardware. RISC OS 3.6 is a further development, which adds support for machines using the similar ARM7500 architecture, and integrates software that was previously separately available. We have tried to make both versions as compatible as possible with the RISC OS 3.1 operating system. RISC OS terminology The operating system known as RISC OS 2 in this manual consists of two variants, RISC OS 2.00 and RISC OS 2.01. The operating system known as RISC OS 3 in this manual consists of two variants, RISC OS 3.00 and RISC OS 3.10. The operating system known as RISC OS 3.5 in this manual is RISC OS 3.50, and is the version supplied with the first generation of Risc PC computers. The operating system known as RISC OS 3.6 in this manual is RISC OS 3.60, and is the version supplied with the second generation of Risc PC computers, and the first generation of A7000 computers. Hardware overview The main electronic components of a Risc PC computer are: ● An ARM (Advanced RISC Machines) ARM610 or ARM700 processor, which provides the main processing. ● A VIDC20 (Video Controller) chip, which provides the video and sound outputs. ● An IOMD (Input Output Memory Device) which provides the interface between the ARM chip, the VIDC chip, the memory and other support chips. This chip replaces the IOC and MEMC chips used in earlier RISC OS computers. 5a-3 Hardware overview The main component of the A7000 is the ARM7500 chip; this integrates all the above functionality into a single chip. Other components The other components are: ● ROM (Read Only Memory) chips containing the operating system. ● RAM (Random Access Memory) chips. ● VRAM (Video RAM) chips used for video display (if fitted). ● Peripheral controllers (for devices such as discs, the serial port, networks and so on). Schematic The diagram on page 5a-5 gives a schematic of an architecture which may be viewed as typical of the Risc PC range of computers. ARM 610 and ARM 700 The ARM is a RISC (Reduced Instruction Set Computer) processor. The initial range of Risc PC computers can use two different versions of the ARM processor. ● The ARM610 delivers about 5 times the power of an ARM 2 (23 MIPs, or million instructions per second, compared to some 4 - 5 MIPS for the ARM2). ● The ARM700 delivers about 8 times the power of an ARM 2 (an estimated 35 MIPS). The ARM 700 also has a direct connection for a hardware floating point chip. From the application programmer’s point of view, there is no difference between the two processors. The ARM700 supports the same instruction set as the ARM610. It is possible that other chips in the ARM6 / ARM7 family may also be used. The VIDC20 chip The VIDC20 chip is an updated version of the VIDC1 and VIDC1a chip used in the previous generation of Acorn computers. The main differences are that VIDC20 provides: ● A wide range of resolution options including VGA, SuperVGA and XGA resolution. ● 1, 2, 4, 8, 16 and 32 bits per pixel. ● 8 bit DACs giving 16 million colours. 5a-4 The kernel 5a-5 Video / Audio Random Access Memory CPU & Control Peripheral Control Expansion Interfaces SIMM 1 OpenBus Card 1 SAM data HI 32b DIMM SIMM 0 OpenBus Card 0 SAM data LO VRAM DRAM ARM CPU 32b address bus latched address bus 32b 28b buffered 16b 32b data bus data bus HI Row & 32b 16b Column Address buffered 16b 12 data bus LO 16b Introduction to RISCIntroduction OS RISC and 3.5 OS 3.6 20 11 3 8 control 32b 8b 4 16b 16b 32b ARM Bus 13 9 control VIDC20 DMA 10 5 4 DRAM & VRAM control 9 8b 8 26 2 2 4 82C665 Expansion VIDC20 IOMD ROMsUniversal Network card cards (8 max) Peripheral Controller IIC Audio 2 filters Video ID Ethernet / Econet / etc 98.1 Figure a Risc Schematic of computer PC ID RTC Floppy disc IDE Hard disc Parallel Serial Mouse buttons Quadrature Mouse IBM PS/2 Compatible Keyboard Key Uni-Directional Latch Bi-Directional Buffer Internal to Case Motherboard Hardware overview Video data transfer The VIDC20 has a 64 bit data bus allowing a high data bandwidth from memory.
Recommended publications
  • So What's the A6 Computer from STD Really Like?
    Front cover and reprint by kind permission of Qercus magazine. So what's the A6 computer from STD really like? (A reprint from Qercus issue 268) The A6 What is the A6? The A6 is a new generation of RISC OS computer. It is based around a high-specification PC running Windows XP. An emulation environment called VirtualRPC enables this machine to appear to RISC OS as if it is a traditional RiscPC machine, and so normal RISC OS applications can be run. Can I run all RiscPC applications? Virtually all, yes. The exception are those which rely on direct access to the parallel or serial ports such as the dongled versions of Impression, although the non-dongled versions work fine, and some modem diallers - internet connections are provided by the emulation environment via the internal modem or network interface. How fast? The A6 will generally run user applications much more quickly than the fastest StrongARM RiscPC. Applications which rely on the transfer of large amounts of data, such as DTP or graphics manipulaton will perform faster still. Such applications also benefit from 8MB of "VVRAM", which means that large screenmodes in true colour are no problem. Our new A6+ offers further enhancements and even better performance - see the last page of this leaflet for details. You're biased! Yes, we are - we specified the A6 to offer an ideal RISC OS emulation environment and we're proud of our achievements. But don't take our word for it - enclosed is a copy of a review of the A6 computer which originally appeared in Qercus issue 268.
    [Show full text]
  • Privateeye Is an Image Viewer for RISC OS
    Welcome PrivateEye is an image viewer for RISC OS. It requires RISC OS 3.6 or later and a Boot sequence with the Nested Wimp and a 32-bit Shared C Library. Features • Loads and displays bitmap and vector images • Sprites, JPEGs, GIFs and PNGs • DrawFiles and ArtWorks • Bitmap effects • Adjust gamma, brightness and contrast • Blur and sharpen • Change saturation and apply histogram effects • Alpha channel support • Bitmap rotation with interactive preview • Rotation is lossless for JPEGs • Native JPEG display using SpriteExtend • Inbuilt lossless “cleaning” transparently loads progressive JPEGs • JFIF, Exif and Adobe metadata information display • Multiple-channel histogram PrivateEye • Display images may be saved • Convert JPEGs, GIFs and PNGs to into Sprites Image Viewer • Any number of images may be open concurrently by David Thomas, © 1999–2017 • Customisable key map version 3.00 (08 Feb 2017) • Lots of interactive help (use it!) Supported Image Formats PrivateEye converts images as necessary into a JPEGs RISC OS-native format. This means that GIFs, PNGs and (optionally) JPEGs are converted into Sprite format when RISC OS’s SpriteExtend module, version 0.99 or later, is used they are loaded. to directly display JPEGs. This allows images larger than available free memory to be displayed by decompressing The converted image is referred to as the display image. and plotting on the fly. Operations such as saving, rotation and the effects system operate on the display image only. Progressive (multiple scan) JPEGs are supported. PrivateEye has an inbuilt version of jpegtran which automatically Sprites converts JPEGs into a baseline format that SpriteExtend can render.
    [Show full text]
  • Acorn Master Service Manual
    British Broadcasting Corporation Master Series Microcomputer Service Manual British Broadcasting Corporation Master Series Microcomputer Service Manual Part No 0443,004 Issue 1 April 1986 M S S M W BBC ' B B C. C A C L 1986 N the whole or any part of the information contained , or the product described , this manual may be adapted or reproduced in any material form except with the prior written approval of A C L (A C). T product described in this manual and products for use with , are subject to continuous development and . A information of a technical nature and particulars of the product and its use ( including the information and particulars in this ) are given by A C in good . H, it is acknowledged that there may be errors or omissions in this . A list of details of any amendments or revisions to this manual can be obtained upon request from A C T E. A C welcome . A :- T E A C L N R C CB5 8PD A maintenance and service on the product must be carried out by A C authorised . A C can accept no liability whatsoever for any loss or damage caused by service or maintenance by unauthorised . T manual is intended only to assist the reader in the use of this , and therefore A C shall not be liable for any loss or damage whatsoever arising from the use of any information or particulars , or any error or omission , this , or any incorrect use of the . T A C . F 1986 P A C L 1 I 1 M S S M WARNING: THE COMPUTER MUST BE EARTHED IMPORTANT: T : G Y E B N B L T moulded plug must be used with the fuse and fuse carrier firmly in .
    [Show full text]
  • Acorn User Display at the AAUG Stand During Will Be Featuring Denbridge Digital the RISC OS '99 Show at Epsom Race in More Depth in a Future Issue of the Course
    eD6st-§elling RISC OS magazine in the world 4^:^^ i I m Find out what Rf| ::j!:azj achines can do tau ISSUE 215 CHRISTMAS 1999 £4.20 1 1 1 1 1! House balls heavy (packol 10) £15 illSJ 640HS Media lot MO dri.c £|9 £!2J]| Mouse lor A7000/r- N/C CD 630t1B re-wriie niedia £10 fii.rs £S tS.il Mouse for all Aciirns (not etr) A70DQ CD 630MB vrriie once raedis (Pk ol Computers for Education £12 II4.II1 10) £|0 £11.15 Original mouse for all Atoms (not A7K) HARDWARE i £16 urn JAZ IGB midta £58 £68.15 Business and Home |AZ 2GB media PERIPHERALS £69 [i PD 630MS media SPECIAL OFFER! £18 tll.lS I Syid 1.5GB media £S8 £S!IS ISDN MODEM + FREE Syquest lOSMB media £45 [S28I ACORN A7000+ tOHniTERS FIXING K. SytfuestOiMB media £45 islSjl INTERNET CONNEaiON )f[|iit'iij![IMB media £45 tS2S slice lor ,!.:., 2d Rlst PC int 1 waj L jj) i( 1 Syqufit 770HB media £76 £45 (Sji? I A?000 4. Ciasm [D £499 hard drive liting kir 2x 64k bpi ehaniiels mil M IDE £|2 £14.10 Zip lOOHBraetfia £8 (Ml IS9xU0«40mm A7000+(l3isnhO £449 W.il i- baikplane (not il CO aJrody insialled) Zip mW £34 [3).!S iOOMB media 1; pack) £35 awl] ;;! footprint A71100+0(lyHeyCD £549 mil Fixing km for hard drives ^ £S ff.40 Zip2S0HBmedia £11.50 (I4.i .Wf^ »«* 2 analogue ports |aTODCH- Odysse)- Nmotk HoniiDr cable lor all £525 mm Acorn (lelecdon) £|0 fll iS | 30 I- Odyssey Primary £599 flOJ ai Podule mi lor A3D00 £|6 RISC OS UPGRADES 47000 I OdyssEc Setoiidary £599 Rise PC I slo[ backplane ISP trial mm ii4.B I Argonet I £29 A700Oi Rise OS 3.11 chip sti £20 am OdyssEr^uil £699 Lih.il SCSI I S II [abteclioice
    [Show full text]
  • GAG-NEWS 69 September/Oktober 2003 Hardware
    Hardware vielbeschworene Medusa-Nachfolger Hardware Abstrac- IYONIX pc vs. Omega tion Layer, kurz HAL). Steffen Huber Castle setzt ganz auf integrierte Kom- Nichtsdestotrotz ponenten aus dem PC-Markt. Das überzeugt RISC Ein altes englisches Sprichwort Herzstück, der XScale 80321 von Intel, OS 5 durch einen lautet sinngemäß: „Man wartet getaktet mit 600 MHz, beinhaltet Satz interessanter ewig auf den Bus, und dann kom- gleichzeitig den RAM-Controller (200 Features gegenüber men zwei gleichzeitig.“ Ungefähr MHz DDR-RAM) und den PCI-Buscon- Version 4: Fontmanager mit Unicode- so stellt sich derzeit die Situation troller (32bit/33 MHz und 64bit/66 Unterstützung, DHCP fürs Ethernet, im RISC OS-Markt dar. Nachdem MHz). Die Grafikkarte ist eine Stan- LanManFS mitgeliefert (inklusive Sup- man fast schon geologische Zeit- dard-PCI-Grafikkarte aus dem nVidia- port für lange Dateinamen), USB- räume auf einen würdigen Risc Stall (Geforce2 MX400), das on-board- Unterstützung, maximaler WimpSlot PC-Nachfolger gewartet hat, ist Netzwerk basiert auf einem Gigabit- von 1 GB pro Programm anstatt 28 MB, nun die Qual der Wahl angesagt: Ethernet-Chip von Intel, USB wird Support für bedeutend größere Parti- Der IYONIX pc von Castle Tech- über eine Standard-PCI-Karte realisiert, tionen sowie natürlich die unvermeid- nologies oder der Omega von Sound kommt von einem AC97-Chip- lichen Bugfixes und Optimierungen. MicroDigital? satz und die diversen Peripheriegeräte (UDMA-IDE, zwei serielle Ports) wer- Omegaseitig könnte man theoretisch den von einer Standard-Southbridge natürlich für rund 230 die neueste Die Testkandidaten sind ein IYONIX (über PCI angekoppelt) bereitgestellt, Select-Version (inklusive aller weiterer pc mit CD-Brenner, 512 MB RAM und wie man sie ebenfalls vom PC-Markt Versionen, die innerhalb eines Jahres 80er Platte, der Omega ist das Midi- kennt.
    [Show full text]
  • Who Saysyou Can't Improve on Thebest?
    Who says you can’t improve on the best? The Best. Better. Since the day it was launched the BBC Micro has Above is a machine which at first glance looks been garlanded with praise. very like the best micro in Britain. One early reviewer called it `the limousine of home But it’s better. computers’ and virtually every independent assessment It’s the new, enhanced, BBC Micro B+. of it since has added weight to that description. Now you can have the legendary quality and The reasons are legion. reliability of the B, plus an extra 32K memory. First, its famous adaptability and expandability. And since this extra memory is largely used on the A feature which makes the BBC Micro invaluable in screen it allows wider use of the outstanding graphics. every corner of science, industry and education. You also get an additional two expansion ROM Then there are its exceptional graphics; its speed; sockets (making four available ROM sockets in all). its reliability. In other words, room for more applications And of course its language - BBC Basic, which and languages. today is the leading language in education and widely The acclaimed Acorn disc filing system is used in business and industry. included as standard for immediate access to a fast and All in all, quite simply, the best. efficient disc storage system. There are extra utility commands for disc and ROM management-thus maximising memory availability. And remember, the Model B+, like the B, is produced by Acorn Computers who have an unbeaten record for products of outstanding quality and reliability.
    [Show full text]
  • Acorn Risc Pc 600
    ACORN RISC PC 600 Acorn Acorns retort to the PowerMacs is an example of innovative design, with extensive expansion, the promise of RISC better cross-platform compatibility and graphics performance Archimedes owners only dreamed about. Ian PC 600 Burley gets a slice of the action. and CPU fans as the chip generates less than 1W of heat. Current ARM610s are 0.8 micron parts, and sample 0.6 micron parts are testing at 40MHz. One of the most striking aspects of the new RISC PC is its case, designed under the auspices of Allen Boothroyd, who designed the original BBC Micro and was a force behind hi-fi manufacturer Meridian. It is made of tough Bayer Bayblend ABS/Polycarbonate, which is used to make riot shields. Internal surfaces are coated to reduce radio frequency interference (RFI) but the external surface is an unpainted light grey. There is provision for screw-mounted peripherals inside but devices like CD-ROMs and hard disks will be clip-mounted Apple-style. Two twist-locking pins need to be turned 90° to get the case lid off. These can be padlocked and the case tethered. It takes less than a minute to open the case, swap processor modules and refit the lid, without any tools. Standard models have a slimline base case with ^ RISC PC Acorn Computers of Cambridge, and not their a two-expansion slot backplane; the front panel has a 600s get the colleagues from Cupertino, were the first to bring spring-loaded door to hide the floppy drive. If you need latest release affordable RISC computing to the masses.
    [Show full text]
  • Filesystems HOWTO Filesystems HOWTO Table of Contents Filesystems HOWTO
    Filesystems HOWTO Filesystems HOWTO Table of Contents Filesystems HOWTO..........................................................................................................................................1 Martin Hinner < [email protected]>, http://martin.hinner.info............................................................1 1. Introduction..........................................................................................................................................1 2. Volumes...............................................................................................................................................1 3. DOS FAT 12/16/32, VFAT.................................................................................................................2 4. High Performance FileSystem (HPFS)................................................................................................2 5. New Technology FileSystem (NTFS).................................................................................................2 6. Extended filesystems (Ext, Ext2, Ext3)...............................................................................................2 7. Macintosh Hierarchical Filesystem − HFS..........................................................................................3 8. ISO 9660 − CD−ROM filesystem.......................................................................................................3 9. Other filesystems.................................................................................................................................3
    [Show full text]
  • A Hardware Guide for the BBC Microcomputer
    A Hardware Guide For The BBC Microcomputer. Written By: A. D. Derrick. B.Sc. D. S. Harding. B.Sc. S.D. Middleton. M. P. Smith. Edited and Published by: Wise Owl Publications Printed by Queenprint Ltd.; 64/74 Holderness Road, Hull HU9 lEQ. Telephone (0482) 224935. 1 Published in the United Kingdom by: Wise-Owl Publications, Hull Innovation Centre. Guildhall Road, Queens Gardens Kingston-upon-Hull, England. Copyright © 1983 Wise-Owl Publications. All rights reserved. No part of this publication may be produced or transmitted, in any form or by any means, without the prior written permission of the publishers. First Published 1983. The Authors would like to thank Dr. W. K. Donaldson, Ian Halstead, Instruments and Controls (Hull), Bernadette, Catherine and Julie for their assistance in the production of this book. The information contained within this book is given in good faith and is believed to be correct at the time of writing. However, neither the Authors or the Publishers take any responsibility for omissions or errors. No liability is assumed for any damages or injury whatsoever resulting from the use of information contained within this publication. All references to the BBC Microcomputer in this publication refer to the microcomputer produced for the British Broadcasting Corporation by Acorn Computers Ltd. CP/M is a registered trademark of Digital Research Corporation. It should be noted that the terms "Econet" and "Tube" are registered trademarks of Acorn Computers Ltd. The Authors thank the following manufacturers for granting permission to publish the data sheets given in Appendix 1 of this book: Hitachi Intel Corporation Motorola Ltd.
    [Show full text]
  • Using Your Desktop
    Valade_06.qxd 3/31/05 2:58 PM Page 73 CHAPTER 6 Using Your Desktop inux provides two basic types of interface for you to use when working with your computer: GUI (graphical user interface) and CLI (command-line interface). An L overview of the interface types is provided in Chapter 5. In this chapter, the most common type of interface, a GUI called a desktop, is discussed in detail. The CLI is dis- cussed in detail in Chapter 7. Linux can start without a desktop, but most users prefer to have Linux start with a desk- top. The installation instructions provided in Chapter 4 result in a desktop opening at startup. A desktop interface functions as the top of your desk, supplying an empty work- ing surface and a set of tools. Different distributions provide different desktops, but most provide KDE (K Desktop Environment) and/or GNOME (Gnu Network Object Model Environment)—the Big Two of Linux desktops. The default desktop differs by distribution. For instance, Fedora defaults to GNOME, and Mandrake/SuSE defaults to KDE. However, you can change the default once you decide which desktop you prefer. KDE and GNOME are open source software, each developed in a project of its own. New versions are released independently of Linux releases or the release of any specific Linux distribution. As a result, different distributions include different KDE and/or GNOME versions. In addition, KDE and GNOME are very configurable. Almost everything about them can be changed. Consequently, KDE and GNOME don’t look exactly the same in different distributions or versions of distributions.
    [Show full text]
  • Raspberry Pi 400
    Advertisement 40 years of improving on the best. In 1981 the first BBC Microcomputer was released with 16K RAM, 8 colours, and a clock speed of 2MHz. Over the next 40 years a pedigree of fast machines running the world’s best operating system, RISC OS, appeared. We won’t bore you with the rest of the facts. Except to tell you about the latest computer. Which runs RISC OS*, of course. It has 253,952 as much RAM, 2 million more colours, runs 900 times faster, and is 10 times lighter than the BBC Microcomputer. BBC Microcomputer Model A. 8 colours, 16K RAM, 2MHz, 3700g. Raspberry Pi 400. 16M colours, 3968MB RAM, 1.8GHz, 386g. The new Raspberry Pi 400. Still improving on the best. Raspberry Pi 400 machine available from all good internet retailers. RISC OS downloadable separately. *Other operating systems available. “Raspberry Pi” is a trademark of the Raspberry Pi Foundation. E&OE. Drag ’N Drop | www.dragdrop.co.uk | Winter 2021 | Page 2 Contents EDITORIAL Welcome to another edition of Drag ’N Drop. Amongst the gloom of the pandemic, there’s something to look forward to in 2021 and that’s 40 years of the BBC Micro. Incredible to think the little beige machine and its sucessors like the Archimedes and RISC OS introduced many people to computers and programming in a fun way, your editor being just one! Were it not for that I doubt I would have been remotely interested in computers as they’d just be drab, inaccessible things running horrible operating systems.
    [Show full text]
  • Risc PC X86 Card User Guide Risc PC X86 Card User Guide Copyright © 1995 Acorn Computers Limited
    Risc PC x86 Card User Guide Risc PC x86 Card User Guide Copyright © 1995 Acorn Computers Limited. All rights reserved. Published by Acorn Computers Technical Publications Department. Neither the whole nor any part of the information contained in, nor the product described in, this manual may be adapted or reproduced in any material form except with the prior written approval of Acorn Computers Limited. The product described in this manual and products for use with it are subject to continuous development and improvement. 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 Acorn Computers Limited in good faith. However, Acorn Computers Limited cannot accept any liability for any loss or damage arising from the use of any information or particulars in this manual. This product is not intended for use as a critical component in life support devices or any system in which failure could be expected to result in personal injury. Acorn supplies its products through an international dealer network. These outlets are trained in the use and support of Acorn products and are available to help resolve any queries you may have. The Risc PC x86 Cards are designed by Acorn Computers Limited. ACORN is a trademark of Acorn Computers Limited PC-DOS is a trademark of International Business Machines Corporation Windows and the Windows logo are trademarks of Microsoft Corporation All other trademarks are acknowledged. Published by Acorn Computers Limited Part number 1411,003 Issue 1, September 1995 Guarantee (valid in UK only) This equipment is guaranteed by Acorn Computers Limited ("ACORN") against mechanical and electrical defects subject to the conditions set out below.
    [Show full text]