Home » Archimedes archive » Acorn Computing » 1994 06 subscription disc.adf » 9406s » PD/!EasyMode/!Help

PD/!EasyMode/!Help

This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.

Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.

Tape/disk: Home » Archimedes archive » Acorn Computing » 1994 06 subscription disc.adf » 9406s
Filename: PD/!EasyMode/!Help
Read OK:
File size: 1568 bytes
Load address: 0000
Exec address: 0000
File contents
EASYMODE
~~~~~~~~
Version 1.00 RISC OS 3+ only and !NewLook compatible
Written by G.J.Lee

This program is Public Domain.


Purpose
-------
The purpose of this application is to allow the easy editing and creation of
multiple screen mode extension modules.

It is for people who perhaps already know how to create a mode extension
module from scratch but who want the parameters required laid out in easy to
edit fashion.

The reason I wrote this program was because I wanted a mode editor whereby
ALL the necessary parameters required to build a new mode could be fine tuned
from the lowest level to my requirements.  I felt that the high level
approach of specifying the only the screen width, height, eigen values and
pixel rates was indequate.  I also wanted the created module to be able to
cope with more than just one mode.


How To Use
----------
Interactive help via !Help is provided so if you're confident, you don't need
to read on but there are some subtle features that need to be pointed out.

List formats should be zero, or one when using extended parameters.  Specify
a RISC OS base mode (0-63) so that all unused parameters will default to the
value used for that mode.  Now customise your new mode accordingly.

If you want to test the mode then click on TRY MODE, if the screen goes
haywire then Escape should reset the screen back to the configured wimpmode
if you're lucky.  You can also see the immediate effect of the VIDC
parameters only, in the current mode, by clicking on VIDC ONLY.

A useful feature is that you can see the VIDC changes in real time by holding
Shift down whilst clicking on the arrows.  Note that the display start/end
values are also adjusted in real time to keep in touch with the logical
screen size and the mouse pointer will become relatively offset, so use
TRY�MODE periodically.

A rough validation check on all values is carried out as they are altered
because they all have their maximums and minimums and some can only be odd or
even or be a multiple of something.  You can validate/evaluate any particular
value by pressing Return on it, use Tab or cursors to move between icons if
you don't want this to happen.


Loading And Saving
------------------
You can drag a module into !EasyMode to see if it can handle any screen modes
itself.  The information is extracted from the module by temporarily loading
it into the RMA and repeatedly calling its service code handler, if it
exists, directly with appropriate values.

There is a slight risk when doing this of course, because the module hasn't
been initialised so the call is unreliable but I figured that the risk is
worth taking but worth mentioning.

To see the list of modes currently stored, go to the submenu Main.Edit and
choose a mode.  Note that modes are MERGED when loaded not replaced, you can
delete unwanted modes via Main.Delete.

When saving your module, only the modes that have been ADDED to the list are
used, NOT the one currently being edited.  Add a mode to the list via
Main.Add.  Note also that the saved module is created using the information
gathered, so if you load a module which wasn't created with !EasyMode in the
first place, make sure that the module didn't perform any other useful
functions before overwriting it.


Miscellaneous
-------------
The current frame refresh rate in Hz can be calculated and viewed via the
submenu Main.Frame Rate.

Remember that modes 0 to 63 are reserved for RISC OS so only add as one of
these modes if you want to replace it.  Modes 64 to 95 are for applications
and 96 to 127 are for the user.

Example modules are given in the subdirectory !EasyMode.Examples.  Either
drag them into !EasyMode to edit them or double-click on them and find out
via *Help which modes they support.


Limitations
-----------
The VIDC control register cannot be used as a parameter, but you don't need
to use it anyway if you correctly specify the base mode and use the extended
parameters.  Interlacing and sync can be controlled via *TV and Configure.

Sensible values will have to be worked out by yourself because explaining in
detail what each one does is beyond the scope of this document.  If you don't
know what a parameter does, just leave it blank at first.  See the
bibliography for where to get further information.

Modes can only be defined for one particular monitor type, whereas the PRM
states that mode extension service code is allowed to return different VIDC
parameter lists for different monitor types but must always return the same
Mode Variables.

The test mode used is mode 127 so beware of clashes.  If you get an error
'Bad Wimpmode' it means that the Wimp Manager doesn't like the mode variables
so you could try typing MODE 127 from BASIC instead to try it out.


Disclaimer
----------
The Author accepts no responsibility for damage to hardware caused by the
misuse of this program so if your monitor blows up, don't come running to me.


Acknowledgements
----------------
Dominic Symes, Author of !Zap
Dick Alstein, Author of !TemplEd

And thanks to all other authors of good quality useable P.D. software.


Bibliography
------------
RISC OS 3 Programmer's Reference Manual, Acorn Computers Ltd.
VLSI Acorn Risc Machine Family Data Manual, VLSI Technology inc.


Ideas? Comments? Bug Lists? Suggestions? Free Software? All Welcome
-------------------------------------------------------------------
Send these to:

Gary Lee
26 Forest Hill Road
East Dulwich
LONDON
SE22 0RR

13-Feb-1994
00000000  45 41 53 59 4d 4f 44 45  0a 7e 7e 7e 7e 7e 7e 7e  |EASYMODE.~~~~~~~|
00000010  7e 0a 56 65 72 73 69 6f  6e 20 31 2e 30 30 20 52  |~.Version 1.00 R|
00000020  49 53 43 20 4f 53 20 33  2b 20 6f 6e 6c 79 20 61  |ISC OS 3+ only a|
00000030  6e 64 20 21 4e 65 77 4c  6f 6f 6b 20 63 6f 6d 70  |nd !NewLook comp|
00000040  61 74 69 62 6c 65 0a 57  72 69 74 74 65 6e 20 62  |atible.Written b|
00000050  79 20 47 2e 4a 2e 4c 65  65 0a 0a 54 68 69 73 20  |y G.J.Lee..This |
00000060  70 72 6f 67 72 61 6d 20  69 73 20 50 75 62 6c 69  |program is Publi|
00000070  63 20 44 6f 6d 61 69 6e  2e 0a 0a 0a 50 75 72 70  |c Domain....Purp|
00000080  6f 73 65 0a 2d 2d 2d 2d  2d 2d 2d 0a 54 68 65 20  |ose.-------.The |
00000090  70 75 72 70 6f 73 65 20  6f 66 20 74 68 69 73 20  |purpose of this |
000000a0  61 70 70 6c 69 63 61 74  69 6f 6e 20 69 73 20 74  |application is t|
000000b0  6f 20 61 6c 6c 6f 77 20  74 68 65 20 65 61 73 79  |o allow the easy|
000000c0  20 65 64 69 74 69 6e 67  20 61 6e 64 20 63 72 65  | editing and cre|
000000d0  61 74 69 6f 6e 20 6f 66  0a 6d 75 6c 74 69 70 6c  |ation of.multipl|
000000e0  65 20 73 63 72 65 65 6e  20 6d 6f 64 65 20 65 78  |e screen mode ex|
000000f0  74 65 6e 73 69 6f 6e 20  6d 6f 64 75 6c 65 73 2e  |tension modules.|
00000100  0a 0a 49 74 20 69 73 20  66 6f 72 20 70 65 6f 70  |..It is for peop|
00000110  6c 65 20 77 68 6f 20 70  65 72 68 61 70 73 20 61  |le who perhaps a|
00000120  6c 72 65 61 64 79 20 6b  6e 6f 77 20 68 6f 77 20  |lready know how |
00000130  74 6f 20 63 72 65 61 74  65 20 61 20 6d 6f 64 65  |to create a mode|
00000140  20 65 78 74 65 6e 73 69  6f 6e 0a 6d 6f 64 75 6c  | extension.modul|
00000150  65 20 66 72 6f 6d 20 73  63 72 61 74 63 68 20 62  |e from scratch b|
00000160  75 74 20 77 68 6f 20 77  61 6e 74 20 74 68 65 20  |ut who want the |
00000170  70 61 72 61 6d 65 74 65  72 73 20 72 65 71 75 69  |parameters requi|
00000180  72 65 64 20 6c 61 69 64  20 6f 75 74 20 69 6e 20  |red laid out in |
00000190  65 61 73 79 20 74 6f 0a  65 64 69 74 20 66 61 73  |easy to.edit fas|
000001a0  68 69 6f 6e 2e 0a 0a 54  68 65 20 72 65 61 73 6f  |hion...The reaso|
000001b0  6e 20 49 20 77 72 6f 74  65 20 74 68 69 73 20 70  |n I wrote this p|
000001c0  72 6f 67 72 61 6d 20 77  61 73 20 62 65 63 61 75  |rogram was becau|
000001d0  73 65 20 49 20 77 61 6e  74 65 64 20 61 20 6d 6f  |se I wanted a mo|
000001e0  64 65 20 65 64 69 74 6f  72 20 77 68 65 72 65 62  |de editor whereb|
000001f0  79 0a 41 4c 4c 20 74 68  65 20 6e 65 63 65 73 73  |y.ALL the necess|
00000200  61 72 79 20 70 61 72 61  6d 65 74 65 72 73 20 72  |ary parameters r|
00000210  65 71 75 69 72 65 64 20  74 6f 20 62 75 69 6c 64  |equired to build|
00000220  20 61 20 6e 65 77 20 6d  6f 64 65 20 63 6f 75 6c  | a new mode coul|
00000230  64 20 62 65 20 66 69 6e  65 20 74 75 6e 65 64 0a  |d be fine tuned.|
00000240  66 72 6f 6d 20 74 68 65  20 6c 6f 77 65 73 74 20  |from the lowest |
00000250  6c 65 76 65 6c 20 74 6f  20 6d 79 20 72 65 71 75  |level to my requ|
00000260  69 72 65 6d 65 6e 74 73  2e 20 20 49 20 66 65 6c  |irements.  I fel|
00000270  74 20 74 68 61 74 20 74  68 65 20 68 69 67 68 20  |t that the high |
00000280  6c 65 76 65 6c 0a 61 70  70 72 6f 61 63 68 20 6f  |level.approach o|
00000290  66 20 73 70 65 63 69 66  79 69 6e 67 20 74 68 65  |f specifying the|
000002a0  20 6f 6e 6c 79 20 74 68  65 20 73 63 72 65 65 6e  | only the screen|
000002b0  20 77 69 64 74 68 2c 20  68 65 69 67 68 74 2c 20  | width, height, |
000002c0  65 69 67 65 6e 20 76 61  6c 75 65 73 20 61 6e 64  |eigen values and|
000002d0  0a 70 69 78 65 6c 20 72  61 74 65 73 20 77 61 73  |.pixel rates was|
000002e0  20 69 6e 64 65 71 75 61  74 65 2e 20 20 49 20 61  | indequate.  I a|
000002f0  6c 73 6f 20 77 61 6e 74  65 64 20 74 68 65 20 63  |lso wanted the c|
00000300  72 65 61 74 65 64 20 6d  6f 64 75 6c 65 20 74 6f  |reated module to|
00000310  20 62 65 20 61 62 6c 65  20 74 6f 0a 63 6f 70 65  | be able to.cope|
00000320  20 77 69 74 68 20 6d 6f  72 65 20 74 68 61 6e 20  | with more than |
00000330  6a 75 73 74 20 6f 6e 65  20 6d 6f 64 65 2e 0a 0a  |just one mode...|
00000340  0a 48 6f 77 20 54 6f 20  55 73 65 0a 2d 2d 2d 2d  |.How To Use.----|
00000350  2d 2d 2d 2d 2d 2d 0a 49  6e 74 65 72 61 63 74 69  |------.Interacti|
00000360  76 65 20 68 65 6c 70 20  76 69 61 20 21 48 65 6c  |ve help via !Hel|
00000370  70 20 69 73 20 70 72 6f  76 69 64 65 64 20 73 6f  |p is provided so|
00000380  20 69 66 20 79 6f 75 27  72 65 20 63 6f 6e 66 69  | if you're confi|
00000390  64 65 6e 74 2c 20 79 6f  75 20 64 6f 6e 27 74 20  |dent, you don't |
000003a0  6e 65 65 64 0a 74 6f 20  72 65 61 64 20 6f 6e 20  |need.to read on |
000003b0  62 75 74 20 74 68 65 72  65 20 61 72 65 20 73 6f  |but there are so|
000003c0  6d 65 20 73 75 62 74 6c  65 20 66 65 61 74 75 72  |me subtle featur|
000003d0  65 73 20 74 68 61 74 20  6e 65 65 64 20 74 6f 20  |es that need to |
000003e0  62 65 20 70 6f 69 6e 74  65 64 20 6f 75 74 2e 0a  |be pointed out..|
000003f0  0a 4c 69 73 74 20 66 6f  72 6d 61 74 73 20 73 68  |.List formats sh|
00000400  6f 75 6c 64 20 62 65 20  7a 65 72 6f 2c 20 6f 72  |ould be zero, or|
00000410  20 6f 6e 65 20 77 68 65  6e 20 75 73 69 6e 67 20  | one when using |
00000420  65 78 74 65 6e 64 65 64  20 70 61 72 61 6d 65 74  |extended paramet|
00000430  65 72 73 2e 20 20 53 70  65 63 69 66 79 0a 61 20  |ers.  Specify.a |
00000440  52 49 53 43 20 4f 53 20  62 61 73 65 20 6d 6f 64  |RISC OS base mod|
00000450  65 20 28 30 2d 36 33 29  20 73 6f 20 74 68 61 74  |e (0-63) so that|
00000460  20 61 6c 6c 20 75 6e 75  73 65 64 20 70 61 72 61  | all unused para|
00000470  6d 65 74 65 72 73 20 77  69 6c 6c 20 64 65 66 61  |meters will defa|
00000480  75 6c 74 20 74 6f 20 74  68 65 0a 76 61 6c 75 65  |ult to the.value|
00000490  20 75 73 65 64 20 66 6f  72 20 74 68 61 74 20 6d  | used for that m|
000004a0  6f 64 65 2e 20 20 4e 6f  77 20 63 75 73 74 6f 6d  |ode.  Now custom|
000004b0  69 73 65 20 79 6f 75 72  20 6e 65 77 20 6d 6f 64  |ise your new mod|
000004c0  65 20 61 63 63 6f 72 64  69 6e 67 6c 79 2e 0a 0a  |e accordingly...|
000004d0  49 66 20 79 6f 75 20 77  61 6e 74 20 74 6f 20 74  |If you want to t|
000004e0  65 73 74 20 74 68 65 20  6d 6f 64 65 20 74 68 65  |est the mode the|
000004f0  6e 20 63 6c 69 63 6b 20  6f 6e 20 54 52 59 20 4d  |n click on TRY M|
00000500  4f 44 45 2c 20 69 66 20  74 68 65 20 73 63 72 65  |ODE, if the scre|
00000510  65 6e 20 67 6f 65 73 0a  68 61 79 77 69 72 65 20  |en goes.haywire |
00000520  74 68 65 6e 20 45 73 63  61 70 65 20 73 68 6f 75  |then Escape shou|
00000530  6c 64 20 72 65 73 65 74  20 74 68 65 20 73 63 72  |ld reset the scr|
00000540  65 65 6e 20 62 61 63 6b  20 74 6f 20 74 68 65 20  |een back to the |
00000550  63 6f 6e 66 69 67 75 72  65 64 20 77 69 6d 70 6d  |configured wimpm|
00000560  6f 64 65 0a 69 66 20 79  6f 75 27 72 65 20 6c 75  |ode.if you're lu|
00000570  63 6b 79 2e 20 20 59 6f  75 20 63 61 6e 20 61 6c  |cky.  You can al|
00000580  73 6f 20 73 65 65 20 74  68 65 20 69 6d 6d 65 64  |so see the immed|
00000590  69 61 74 65 20 65 66 66  65 63 74 20 6f 66 20 74  |iate effect of t|
000005a0  68 65 20 56 49 44 43 0a  70 61 72 61 6d 65 74 65  |he VIDC.paramete|
000005b0  72 73 20 6f 6e 6c 79 2c  20 69 6e 20 74 68 65 20  |rs only, in the |
000005c0  63 75 72 72 65 6e 74 20  6d 6f 64 65 2c 20 62 79  |current mode, by|
000005d0  20 63 6c 69 63 6b 69 6e  67 20 6f 6e 20 56 49 44  | clicking on VID|
000005e0  43 20 4f 4e 4c 59 2e 0a  0a 41 20 75 73 65 66 75  |C ONLY...A usefu|
000005f0  6c 20 66 65 61 74 75 72  65 20 69 73 20 74 68 61  |l feature is tha|
00000600  74 20 79 6f 75 20 63 61  6e 20 73 65 65 20 74 68  |t you can see th|
00000610  65 20 56 49 44 43 20 63  68 61 6e 67 65 73 20 69  |e VIDC changes i|
00000620  6e 20 72 65 61 6c 20 74  69 6d 65 20 62 79 20 68  |n real time by h|
00000630  6f 6c 64 69 6e 67 0a 53  68 69 66 74 20 64 6f 77  |olding.Shift dow|
00000640  6e 20 77 68 69 6c 73 74  20 63 6c 69 63 6b 69 6e  |n whilst clickin|
00000650  67 20 6f 6e 20 74 68 65  20 61 72 72 6f 77 73 2e  |g on the arrows.|
00000660  20 20 4e 6f 74 65 20 74  68 61 74 20 74 68 65 20  |  Note that the |
00000670  64 69 73 70 6c 61 79 20  73 74 61 72 74 2f 65 6e  |display start/en|
00000680  64 0a 76 61 6c 75 65 73  20 61 72 65 20 61 6c 73  |d.values are als|
00000690  6f 20 61 64 6a 75 73 74  65 64 20 69 6e 20 72 65  |o adjusted in re|
000006a0  61 6c 20 74 69 6d 65 20  74 6f 20 6b 65 65 70 20  |al time to keep |
000006b0  69 6e 20 74 6f 75 63 68  20 77 69 74 68 20 74 68  |in touch with th|
000006c0  65 20 6c 6f 67 69 63 61  6c 0a 73 63 72 65 65 6e  |e logical.screen|
000006d0  20 73 69 7a 65 20 61 6e  64 20 74 68 65 20 6d 6f  | size and the mo|
000006e0  75 73 65 20 70 6f 69 6e  74 65 72 20 77 69 6c 6c  |use pointer will|
000006f0  20 62 65 63 6f 6d 65 20  72 65 6c 61 74 69 76 65  | become relative|
00000700  6c 79 20 6f 66 66 73 65  74 2c 20 73 6f 20 75 73  |ly offset, so us|
00000710  65 0a 54 52 59 a0 4d 4f  44 45 20 70 65 72 69 6f  |e.TRY.MODE perio|
00000720  64 69 63 61 6c 6c 79 2e  0a 0a 41 20 72 6f 75 67  |dically...A roug|
00000730  68 20 76 61 6c 69 64 61  74 69 6f 6e 20 63 68 65  |h validation che|
00000740  63 6b 20 6f 6e 20 61 6c  6c 20 76 61 6c 75 65 73  |ck on all values|
00000750  20 69 73 20 63 61 72 72  69 65 64 20 6f 75 74 20  | is carried out |
00000760  61 73 20 74 68 65 79 20  61 72 65 20 61 6c 74 65  |as they are alte|
00000770  72 65 64 0a 62 65 63 61  75 73 65 20 74 68 65 79  |red.because they|
00000780  20 61 6c 6c 20 68 61 76  65 20 74 68 65 69 72 20  | all have their |
00000790  6d 61 78 69 6d 75 6d 73  20 61 6e 64 20 6d 69 6e  |maximums and min|
000007a0  69 6d 75 6d 73 20 61 6e  64 20 73 6f 6d 65 20 63  |imums and some c|
000007b0  61 6e 20 6f 6e 6c 79 20  62 65 20 6f 64 64 20 6f  |an only be odd o|
000007c0  72 0a 65 76 65 6e 20 6f  72 20 62 65 20 61 20 6d  |r.even or be a m|
000007d0  75 6c 74 69 70 6c 65 20  6f 66 20 73 6f 6d 65 74  |ultiple of somet|
000007e0  68 69 6e 67 2e 20 20 59  6f 75 20 63 61 6e 20 76  |hing.  You can v|
000007f0  61 6c 69 64 61 74 65 2f  65 76 61 6c 75 61 74 65  |alidate/evaluate|
00000800  20 61 6e 79 20 70 61 72  74 69 63 75 6c 61 72 0a  | any particular.|
00000810  76 61 6c 75 65 20 62 79  20 70 72 65 73 73 69 6e  |value by pressin|
00000820  67 20 52 65 74 75 72 6e  20 6f 6e 20 69 74 2c 20  |g Return on it, |
00000830  75 73 65 20 54 61 62 20  6f 72 20 63 75 72 73 6f  |use Tab or curso|
00000840  72 73 20 74 6f 20 6d 6f  76 65 20 62 65 74 77 65  |rs to move betwe|
00000850  65 6e 20 69 63 6f 6e 73  20 69 66 0a 79 6f 75 20  |en icons if.you |
00000860  64 6f 6e 27 74 20 77 61  6e 74 20 74 68 69 73 20  |don't want this |
00000870  74 6f 20 68 61 70 70 65  6e 2e 0a 0a 0a 4c 6f 61  |to happen....Loa|
00000880  64 69 6e 67 20 41 6e 64  20 53 61 76 69 6e 67 0a  |ding And Saving.|
00000890  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
000008a0  2d 2d 0a 59 6f 75 20 63  61 6e 20 64 72 61 67 20  |--.You can drag |
000008b0  61 20 6d 6f 64 75 6c 65  20 69 6e 74 6f 20 21 45  |a module into !E|
000008c0  61 73 79 4d 6f 64 65 20  74 6f 20 73 65 65 20 69  |asyMode to see i|
000008d0  66 20 69 74 20 63 61 6e  20 68 61 6e 64 6c 65 20  |f it can handle |
000008e0  61 6e 79 20 73 63 72 65  65 6e 20 6d 6f 64 65 73  |any screen modes|
000008f0  0a 69 74 73 65 6c 66 2e  20 20 54 68 65 20 69 6e  |.itself.  The in|
00000900  66 6f 72 6d 61 74 69 6f  6e 20 69 73 20 65 78 74  |formation is ext|
00000910  72 61 63 74 65 64 20 66  72 6f 6d 20 74 68 65 20  |racted from the |
00000920  6d 6f 64 75 6c 65 20 62  79 20 74 65 6d 70 6f 72  |module by tempor|
00000930  61 72 69 6c 79 20 6c 6f  61 64 69 6e 67 0a 69 74  |arily loading.it|
00000940  20 69 6e 74 6f 20 74 68  65 20 52 4d 41 20 61 6e  | into the RMA an|
00000950  64 20 72 65 70 65 61 74  65 64 6c 79 20 63 61 6c  |d repeatedly cal|
00000960  6c 69 6e 67 20 69 74 73  20 73 65 72 76 69 63 65  |ling its service|
00000970  20 63 6f 64 65 20 68 61  6e 64 6c 65 72 2c 20 69  | code handler, i|
00000980  66 20 69 74 0a 65 78 69  73 74 73 2c 20 64 69 72  |f it.exists, dir|
00000990  65 63 74 6c 79 20 77 69  74 68 20 61 70 70 72 6f  |ectly with appro|
000009a0  70 72 69 61 74 65 20 76  61 6c 75 65 73 2e 0a 0a  |priate values...|
000009b0  54 68 65 72 65 20 69 73  20 61 20 73 6c 69 67 68  |There is a sligh|
000009c0  74 20 72 69 73 6b 20 77  68 65 6e 20 64 6f 69 6e  |t risk when doin|
000009d0  67 20 74 68 69 73 20 6f  66 20 63 6f 75 72 73 65  |g this of course|
000009e0  2c 20 62 65 63 61 75 73  65 20 74 68 65 20 6d 6f  |, because the mo|
000009f0  64 75 6c 65 20 68 61 73  6e 27 74 0a 62 65 65 6e  |dule hasn't.been|
00000a00  20 69 6e 69 74 69 61 6c  69 73 65 64 20 73 6f 20  | initialised so |
00000a10  74 68 65 20 63 61 6c 6c  20 69 73 20 75 6e 72 65  |the call is unre|
00000a20  6c 69 61 62 6c 65 20 62  75 74 20 49 20 66 69 67  |liable but I fig|
00000a30  75 72 65 64 20 74 68 61  74 20 74 68 65 20 72 69  |ured that the ri|
00000a40  73 6b 20 69 73 0a 77 6f  72 74 68 20 74 61 6b 69  |sk is.worth taki|
00000a50  6e 67 20 62 75 74 20 77  6f 72 74 68 20 6d 65 6e  |ng but worth men|
00000a60  74 69 6f 6e 69 6e 67 2e  0a 0a 54 6f 20 73 65 65  |tioning...To see|
00000a70  20 74 68 65 20 6c 69 73  74 20 6f 66 20 6d 6f 64  | the list of mod|
00000a80  65 73 20 63 75 72 72 65  6e 74 6c 79 20 73 74 6f  |es currently sto|
00000a90  72 65 64 2c 20 67 6f 20  74 6f 20 74 68 65 20 73  |red, go to the s|
00000aa0  75 62 6d 65 6e 75 20 4d  61 69 6e 2e 45 64 69 74  |ubmenu Main.Edit|
00000ab0  20 61 6e 64 0a 63 68 6f  6f 73 65 20 61 20 6d 6f  | and.choose a mo|
00000ac0  64 65 2e 20 20 4e 6f 74  65 20 74 68 61 74 20 6d  |de.  Note that m|
00000ad0  6f 64 65 73 20 61 72 65  20 4d 45 52 47 45 44 20  |odes are MERGED |
00000ae0  77 68 65 6e 20 6c 6f 61  64 65 64 20 6e 6f 74 20  |when loaded not |
00000af0  72 65 70 6c 61 63 65 64  2c 20 79 6f 75 20 63 61  |replaced, you ca|
00000b00  6e 0a 64 65 6c 65 74 65  20 75 6e 77 61 6e 74 65  |n.delete unwante|
00000b10  64 20 6d 6f 64 65 73 20  76 69 61 20 4d 61 69 6e  |d modes via Main|
00000b20  2e 44 65 6c 65 74 65 2e  0a 0a 57 68 65 6e 20 73  |.Delete...When s|
00000b30  61 76 69 6e 67 20 79 6f  75 72 20 6d 6f 64 75 6c  |aving your modul|
00000b40  65 2c 20 6f 6e 6c 79 20  74 68 65 20 6d 6f 64 65  |e, only the mode|
00000b50  73 20 74 68 61 74 20 68  61 76 65 20 62 65 65 6e  |s that have been|
00000b60  20 41 44 44 45 44 20 74  6f 20 74 68 65 20 6c 69  | ADDED to the li|
00000b70  73 74 20 61 72 65 0a 75  73 65 64 2c 20 4e 4f 54  |st are.used, NOT|
00000b80  20 74 68 65 20 6f 6e 65  20 63 75 72 72 65 6e 74  | the one current|
00000b90  6c 79 20 62 65 69 6e 67  20 65 64 69 74 65 64 2e  |ly being edited.|
00000ba0  20 20 41 64 64 20 61 20  6d 6f 64 65 20 74 6f 20  |  Add a mode to |
00000bb0  74 68 65 20 6c 69 73 74  20 76 69 61 0a 4d 61 69  |the list via.Mai|
00000bc0  6e 2e 41 64 64 2e 20 20  4e 6f 74 65 20 61 6c 73  |n.Add.  Note als|
00000bd0  6f 20 74 68 61 74 20 74  68 65 20 73 61 76 65 64  |o that the saved|
00000be0  20 6d 6f 64 75 6c 65 20  69 73 20 63 72 65 61 74  | module is creat|
00000bf0  65 64 20 75 73 69 6e 67  20 74 68 65 20 69 6e 66  |ed using the inf|
00000c00  6f 72 6d 61 74 69 6f 6e  0a 67 61 74 68 65 72 65  |ormation.gathere|
00000c10  64 2c 20 73 6f 20 69 66  20 79 6f 75 20 6c 6f 61  |d, so if you loa|
00000c20  64 20 61 20 6d 6f 64 75  6c 65 20 77 68 69 63 68  |d a module which|
00000c30  20 77 61 73 6e 27 74 20  63 72 65 61 74 65 64 20  | wasn't created |
00000c40  77 69 74 68 20 21 45 61  73 79 4d 6f 64 65 20 69  |with !EasyMode i|
00000c50  6e 20 74 68 65 0a 66 69  72 73 74 20 70 6c 61 63  |n the.first plac|
00000c60  65 2c 20 6d 61 6b 65 20  73 75 72 65 20 74 68 61  |e, make sure tha|
00000c70  74 20 74 68 65 20 6d 6f  64 75 6c 65 20 64 69 64  |t the module did|
00000c80  6e 27 74 20 70 65 72 66  6f 72 6d 20 61 6e 79 20  |n't perform any |
00000c90  6f 74 68 65 72 20 75 73  65 66 75 6c 0a 66 75 6e  |other useful.fun|
00000ca0  63 74 69 6f 6e 73 20 62  65 66 6f 72 65 20 6f 76  |ctions before ov|
00000cb0  65 72 77 72 69 74 69 6e  67 20 69 74 2e 0a 0a 0a  |erwriting it....|
00000cc0  4d 69 73 63 65 6c 6c 61  6e 65 6f 75 73 0a 2d 2d  |Miscellaneous.--|
00000cd0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 0a 54 68 65 20  |-----------.The |
00000ce0  63 75 72 72 65 6e 74 20  66 72 61 6d 65 20 72 65  |current frame re|
00000cf0  66 72 65 73 68 20 72 61  74 65 20 69 6e 20 48 7a  |fresh rate in Hz|
00000d00  20 63 61 6e 20 62 65 20  63 61 6c 63 75 6c 61 74  | can be calculat|
00000d10  65 64 20 61 6e 64 20 76  69 65 77 65 64 20 76 69  |ed and viewed vi|
00000d20  61 20 74 68 65 0a 73 75  62 6d 65 6e 75 20 4d 61  |a the.submenu Ma|
00000d30  69 6e 2e 46 72 61 6d 65  20 52 61 74 65 2e 0a 0a  |in.Frame Rate...|
00000d40  52 65 6d 65 6d 62 65 72  20 74 68 61 74 20 6d 6f  |Remember that mo|
00000d50  64 65 73 20 30 20 74 6f  20 36 33 20 61 72 65 20  |des 0 to 63 are |
00000d60  72 65 73 65 72 76 65 64  20 66 6f 72 20 52 49 53  |reserved for RIS|
00000d70  43 20 4f 53 20 73 6f 20  6f 6e 6c 79 20 61 64 64  |C OS so only add|
00000d80  20 61 73 20 6f 6e 65 20  6f 66 0a 74 68 65 73 65  | as one of.these|
00000d90  20 6d 6f 64 65 73 20 69  66 20 79 6f 75 20 77 61  | modes if you wa|
00000da0  6e 74 20 74 6f 20 72 65  70 6c 61 63 65 20 69 74  |nt to replace it|
00000db0  2e 20 20 4d 6f 64 65 73  20 36 34 20 74 6f 20 39  |.  Modes 64 to 9|
00000dc0  35 20 61 72 65 20 66 6f  72 20 61 70 70 6c 69 63  |5 are for applic|
00000dd0  61 74 69 6f 6e 73 0a 61  6e 64 20 39 36 20 74 6f  |ations.and 96 to|
00000de0  20 31 32 37 20 61 72 65  20 66 6f 72 20 74 68 65  | 127 are for the|
00000df0  20 75 73 65 72 2e 0a 0a  45 78 61 6d 70 6c 65 20  | user...Example |
00000e00  6d 6f 64 75 6c 65 73 20  61 72 65 20 67 69 76 65  |modules are give|
00000e10  6e 20 69 6e 20 74 68 65  20 73 75 62 64 69 72 65  |n in the subdire|
00000e20  63 74 6f 72 79 20 21 45  61 73 79 4d 6f 64 65 2e  |ctory !EasyMode.|
00000e30  45 78 61 6d 70 6c 65 73  2e 20 20 45 69 74 68 65  |Examples.  Eithe|
00000e40  72 0a 64 72 61 67 20 74  68 65 6d 20 69 6e 74 6f  |r.drag them into|
00000e50  20 21 45 61 73 79 4d 6f  64 65 20 74 6f 20 65 64  | !EasyMode to ed|
00000e60  69 74 20 74 68 65 6d 20  6f 72 20 64 6f 75 62 6c  |it them or doubl|
00000e70  65 2d 63 6c 69 63 6b 20  6f 6e 20 74 68 65 6d 20  |e-click on them |
00000e80  61 6e 64 20 66 69 6e 64  20 6f 75 74 0a 76 69 61  |and find out.via|
00000e90  20 2a 48 65 6c 70 20 77  68 69 63 68 20 6d 6f 64  | *Help which mod|
00000ea0  65 73 20 74 68 65 79 20  73 75 70 70 6f 72 74 2e  |es they support.|
00000eb0  0a 0a 0a 4c 69 6d 69 74  61 74 69 6f 6e 73 0a 2d  |...Limitations.-|
00000ec0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 0a 54 68 65 20 56  |----------.The V|
00000ed0  49 44 43 20 63 6f 6e 74  72 6f 6c 20 72 65 67 69  |IDC control regi|
00000ee0  73 74 65 72 20 63 61 6e  6e 6f 74 20 62 65 20 75  |ster cannot be u|
00000ef0  73 65 64 20 61 73 20 61  20 70 61 72 61 6d 65 74  |sed as a paramet|
00000f00  65 72 2c 20 62 75 74 20  79 6f 75 20 64 6f 6e 27  |er, but you don'|
00000f10  74 20 6e 65 65 64 0a 74  6f 20 75 73 65 20 69 74  |t need.to use it|
00000f20  20 61 6e 79 77 61 79 20  69 66 20 79 6f 75 20 63  | anyway if you c|
00000f30  6f 72 72 65 63 74 6c 79  20 73 70 65 63 69 66 79  |orrectly specify|
00000f40  20 74 68 65 20 62 61 73  65 20 6d 6f 64 65 20 61  | the base mode a|
00000f50  6e 64 20 75 73 65 20 74  68 65 20 65 78 74 65 6e  |nd use the exten|
00000f60  64 65 64 0a 70 61 72 61  6d 65 74 65 72 73 2e 20  |ded.parameters. |
00000f70  20 49 6e 74 65 72 6c 61  63 69 6e 67 20 61 6e 64  | Interlacing and|
00000f80  20 73 79 6e 63 20 63 61  6e 20 62 65 20 63 6f 6e  | sync can be con|
00000f90  74 72 6f 6c 6c 65 64 20  76 69 61 20 2a 54 56 20  |trolled via *TV |
00000fa0  61 6e 64 20 43 6f 6e 66  69 67 75 72 65 2e 0a 0a  |and Configure...|
00000fb0  53 65 6e 73 69 62 6c 65  20 76 61 6c 75 65 73 20  |Sensible values |
00000fc0  77 69 6c 6c 20 68 61 76  65 20 74 6f 20 62 65 20  |will have to be |
00000fd0  77 6f 72 6b 65 64 20 6f  75 74 20 62 79 20 79 6f  |worked out by yo|
00000fe0  75 72 73 65 6c 66 20 62  65 63 61 75 73 65 20 65  |urself because e|
00000ff0  78 70 6c 61 69 6e 69 6e  67 20 69 6e 0a 64 65 74  |xplaining in.det|
00001000  61 69 6c 20 77 68 61 74  20 65 61 63 68 20 6f 6e  |ail what each on|
00001010  65 20 64 6f 65 73 20 69  73 20 62 65 79 6f 6e 64  |e does is beyond|
00001020  20 74 68 65 20 73 63 6f  70 65 20 6f 66 20 74 68  | the scope of th|
00001030  69 73 20 64 6f 63 75 6d  65 6e 74 2e 20 20 49 66  |is document.  If|
00001040  20 79 6f 75 20 64 6f 6e  27 74 0a 6b 6e 6f 77 20  | you don't.know |
00001050  77 68 61 74 20 61 20 70  61 72 61 6d 65 74 65 72  |what a parameter|
00001060  20 64 6f 65 73 2c 20 6a  75 73 74 20 6c 65 61 76  | does, just leav|
00001070  65 20 69 74 20 62 6c 61  6e 6b 20 61 74 20 66 69  |e it blank at fi|
00001080  72 73 74 2e 20 20 53 65  65 20 74 68 65 0a 62 69  |rst.  See the.bi|
00001090  62 6c 69 6f 67 72 61 70  68 79 20 66 6f 72 20 77  |bliography for w|
000010a0  68 65 72 65 20 74 6f 20  67 65 74 20 66 75 72 74  |here to get furt|
000010b0  68 65 72 20 69 6e 66 6f  72 6d 61 74 69 6f 6e 2e  |her information.|
000010c0  0a 0a 4d 6f 64 65 73 20  63 61 6e 20 6f 6e 6c 79  |..Modes can only|
000010d0  20 62 65 20 64 65 66 69  6e 65 64 20 66 6f 72 20  | be defined for |
000010e0  6f 6e 65 20 70 61 72 74  69 63 75 6c 61 72 20 6d  |one particular m|
000010f0  6f 6e 69 74 6f 72 20 74  79 70 65 2c 20 77 68 65  |onitor type, whe|
00001100  72 65 61 73 20 74 68 65  20 50 52 4d 0a 73 74 61  |reas the PRM.sta|
00001110  74 65 73 20 74 68 61 74  20 6d 6f 64 65 20 65 78  |tes that mode ex|
00001120  74 65 6e 73 69 6f 6e 20  73 65 72 76 69 63 65 20  |tension service |
00001130  63 6f 64 65 20 69 73 20  61 6c 6c 6f 77 65 64 20  |code is allowed |
00001140  74 6f 20 72 65 74 75 72  6e 20 64 69 66 66 65 72  |to return differ|
00001150  65 6e 74 20 56 49 44 43  0a 70 61 72 61 6d 65 74  |ent VIDC.paramet|
00001160  65 72 20 6c 69 73 74 73  20 66 6f 72 20 64 69 66  |er lists for dif|
00001170  66 65 72 65 6e 74 20 6d  6f 6e 69 74 6f 72 20 74  |ferent monitor t|
00001180  79 70 65 73 20 62 75 74  20 6d 75 73 74 20 61 6c  |ypes but must al|
00001190  77 61 79 73 20 72 65 74  75 72 6e 20 74 68 65 20  |ways return the |
000011a0  73 61 6d 65 0a 4d 6f 64  65 20 56 61 72 69 61 62  |same.Mode Variab|
000011b0  6c 65 73 2e 0a 0a 54 68  65 20 74 65 73 74 20 6d  |les...The test m|
000011c0  6f 64 65 20 75 73 65 64  20 69 73 20 6d 6f 64 65  |ode used is mode|
000011d0  20 31 32 37 20 73 6f 20  62 65 77 61 72 65 20 6f  | 127 so beware o|
000011e0  66 20 63 6c 61 73 68 65  73 2e 20 20 49 66 20 79  |f clashes.  If y|
000011f0  6f 75 20 67 65 74 20 61  6e 20 65 72 72 6f 72 0a  |ou get an error.|
00001200  27 42 61 64 20 57 69 6d  70 6d 6f 64 65 27 20 69  |'Bad Wimpmode' i|
00001210  74 20 6d 65 61 6e 73 20  74 68 61 74 20 74 68 65  |t means that the|
00001220  20 57 69 6d 70 20 4d 61  6e 61 67 65 72 20 64 6f  | Wimp Manager do|
00001230  65 73 6e 27 74 20 6c 69  6b 65 20 74 68 65 20 6d  |esn't like the m|
00001240  6f 64 65 20 76 61 72 69  61 62 6c 65 73 0a 73 6f  |ode variables.so|
00001250  20 79 6f 75 20 63 6f 75  6c 64 20 74 72 79 20 74  | you could try t|
00001260  79 70 69 6e 67 20 4d 4f  44 45 20 31 32 37 20 66  |yping MODE 127 f|
00001270  72 6f 6d 20 42 41 53 49  43 20 69 6e 73 74 65 61  |rom BASIC instea|
00001280  64 20 74 6f 20 74 72 79  20 69 74 20 6f 75 74 2e  |d to try it out.|
00001290  0a 0a 0a 44 69 73 63 6c  61 69 6d 65 72 0a 2d 2d  |...Disclaimer.--|
000012a0  2d 2d 2d 2d 2d 2d 2d 2d  0a 54 68 65 20 41 75 74  |--------.The Aut|
000012b0  68 6f 72 20 61 63 63 65  70 74 73 20 6e 6f 20 72  |hor accepts no r|
000012c0  65 73 70 6f 6e 73 69 62  69 6c 69 74 79 20 66 6f  |esponsibility fo|
000012d0  72 20 64 61 6d 61 67 65  20 74 6f 20 68 61 72 64  |r damage to hard|
000012e0  77 61 72 65 20 63 61 75  73 65 64 20 62 79 20 74  |ware caused by t|
000012f0  68 65 0a 6d 69 73 75 73  65 20 6f 66 20 74 68 69  |he.misuse of thi|
00001300  73 20 70 72 6f 67 72 61  6d 20 73 6f 20 69 66 20  |s program so if |
00001310  79 6f 75 72 20 6d 6f 6e  69 74 6f 72 20 62 6c 6f  |your monitor blo|
00001320  77 73 20 75 70 2c 20 64  6f 6e 27 74 20 63 6f 6d  |ws up, don't com|
00001330  65 20 72 75 6e 6e 69 6e  67 20 74 6f 20 6d 65 2e  |e running to me.|
00001340  0a 0a 0a 41 63 6b 6e 6f  77 6c 65 64 67 65 6d 65  |...Acknowledgeme|
00001350  6e 74 73 0a 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |nts.------------|
00001360  2d 2d 2d 2d 0a 44 6f 6d  69 6e 69 63 20 53 79 6d  |----.Dominic Sym|
00001370  65 73 2c 20 41 75 74 68  6f 72 20 6f 66 20 21 5a  |es, Author of !Z|
00001380  61 70 0a 44 69 63 6b 20  41 6c 73 74 65 69 6e 2c  |ap.Dick Alstein,|
00001390  20 41 75 74 68 6f 72 20  6f 66 20 21 54 65 6d 70  | Author of !Temp|
000013a0  6c 45 64 0a 0a 41 6e 64  20 74 68 61 6e 6b 73 20  |lEd..And thanks |
000013b0  74 6f 20 61 6c 6c 20 6f  74 68 65 72 20 61 75 74  |to all other aut|
000013c0  68 6f 72 73 20 6f 66 20  67 6f 6f 64 20 71 75 61  |hors of good qua|
000013d0  6c 69 74 79 20 75 73 65  61 62 6c 65 20 50 2e 44  |lity useable P.D|
000013e0  2e 20 73 6f 66 74 77 61  72 65 2e 0a 0a 0a 42 69  |. software....Bi|
000013f0  62 6c 69 6f 67 72 61 70  68 79 0a 2d 2d 2d 2d 2d  |bliography.-----|
00001400  2d 2d 2d 2d 2d 2d 2d 0a  52 49 53 43 20 4f 53 20  |-------.RISC OS |
00001410  33 20 50 72 6f 67 72 61  6d 6d 65 72 27 73 20 52  |3 Programmer's R|
00001420  65 66 65 72 65 6e 63 65  20 4d 61 6e 75 61 6c 2c  |eference Manual,|
00001430  20 41 63 6f 72 6e 20 43  6f 6d 70 75 74 65 72 73  | Acorn Computers|
00001440  20 4c 74 64 2e 0a 56 4c  53 49 20 41 63 6f 72 6e  | Ltd..VLSI Acorn|
00001450  20 52 69 73 63 20 4d 61  63 68 69 6e 65 20 46 61  | Risc Machine Fa|
00001460  6d 69 6c 79 20 44 61 74  61 20 4d 61 6e 75 61 6c  |mily Data Manual|
00001470  2c 20 56 4c 53 49 20 54  65 63 68 6e 6f 6c 6f 67  |, VLSI Technolog|
00001480  79 20 69 6e 63 2e 0a 0a  0a 49 64 65 61 73 3f 20  |y inc....Ideas? |
00001490  43 6f 6d 6d 65 6e 74 73  3f 20 42 75 67 20 4c 69  |Comments? Bug Li|
000014a0  73 74 73 3f 20 53 75 67  67 65 73 74 69 6f 6e 73  |sts? Suggestions|
000014b0  3f 20 46 72 65 65 20 53  6f 66 74 77 61 72 65 3f  |? Free Software?|
000014c0  20 41 6c 6c 20 57 65 6c  63 6f 6d 65 0a 2d 2d 2d  | All Welcome.---|
000014d0  2d 2d 2d 2d 2d 2d 2d 2d  2d 2d 2d 2d 2d 2d 2d 2d  |----------------|
*
00001510  0a 53 65 6e 64 20 74 68  65 73 65 20 74 6f 3a 0a  |.Send these to:.|
00001520  0a 47 61 72 79 20 4c 65  65 0a 32 36 20 46 6f 72  |.Gary Lee.26 For|
00001530  65 73 74 20 48 69 6c 6c  20 52 6f 61 64 0a 45 61  |est Hill Road.Ea|
00001540  73 74 20 44 75 6c 77 69  63 68 0a 4c 4f 4e 44 4f  |st Dulwich.LONDO|
00001550  4e 0a 53 45 32 32 20 30  52 52 0a 0a 31 33 2d 46  |N.SE22 0RR..13-F|
00001560  65 62 2d 31 39 39 34 0a                           |eb-1994.|
00001568