Home » Archimedes archive » Acorn User » AU 1997-11 A.adf » Regulars1 » MikeC/Software/!Sim84/!Help

MikeC/Software/!Sim84/!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 User » AU 1997-11 A.adf » Regulars1
Filename: MikeC/Software/!Sim84/!Help
Read OK:
File size: 0D25 bytes
Load address: 0000
Exec address: 0000
File contents
PIC 16C84 Emulator V1.0
Copyright Mike Cook 1997  - Musbury Consultants - all rights reserved
01706 216701
5 Helmshore Rd,
Haslingden,
Rossendale,
Lancs.
BB4 4BG
m.cook@mmu.ac.uk

The PIC16C84 is a programmable micro controller.
Applications to generate source code and blow the chip with it are avaliable from the same author.
This application takes an object code file and emulates the chip but not in real time.

There are two windows, Control and Monitor. The menu controls which are opened
when you click the icon bar.
Dragging a HEX file into the control window or icon bar loads the code and performs
a power up reset.

All the memory and register indicators are in writable icons. There values can be changed
at any time by clicking on the box to get the carrat, typing in the new value (in HEX)
and then hiting RETURN. Note new values are only used when RETURN is hit.

The WDTE icon is the configuration fuse for the Watchdog Timer Enable, with this ticked
the watch dog timer will increment every programme cycle.
You can choose to single step through instructions or have them continiously exicuited.
Alternativly selecting Skip will move to the next memory location. Note that you can
perform a GOTO by typing the required value in the address box.
The Sleep LED lights up when in the sleep mode, then only the watch dog timer runs.

The Monitor windows only shows values of registers that have been written to. You
can change the value of any register simply by typing a value (in hex) and pressing return.

                          
There are some psudo registers to help compensate for the unreal time of the emulator,
as most applications have long time delays, these are 'watchdog time out' and 'Eprom Time'.

The 'watchdog time out' is the limit to which the Watch dog timer must reach before
triping, it is preset to the approximate number of cycles the real timer would take.
However if you want to speed things up simply type a smaller number here.

The 'Eprom Time' is the number of machine cycles before data is written into the
Data memory. This takes time in the chip but here is done instantly. However, the interrupt
on time out still occours. To make this happen faster type a smaller number in here. Note that
in the data sheets a certian uninterrupted sequnce of operations is needed for a sucessfull write,
here only the last stage of setting the write bit in EECON1 (with it previously being cleared)
is required.
                              
You can't access the prescaler in the real chip here you can, it counts up in increments
depending on the prescaller division ratio. For example with a 1:4 ratio it will count up in
increments of 40h.

Break points: To set a break point type in the hex address and press enter.
              To clear a break point enter and address greater than the maximum of 3FF
              When a running program encounters a break point it will stop and go into the
              single step mode.

With such a complex application it is not possable to test it sufficently to find any discrepancies
between its action and that of the real chip. If you come accross any of these please let me know
at the address or emale given at the top of the page.
Legal stuff.
I do not accept responsibility for anything:- Bosnia, Northern Ireland, the Middle East
or anything this program may or may not do.
00000000  50 49 43 20 31 36 43 38  34 20 45 6d 75 6c 61 74  |PIC 16C84 Emulat|
00000010  6f 72 20 56 31 2e 30 0a  43 6f 70 79 72 69 67 68  |or V1.0.Copyrigh|
00000020  74 20 4d 69 6b 65 20 43  6f 6f 6b 20 31 39 39 37  |t Mike Cook 1997|
00000030  20 20 2d 20 4d 75 73 62  75 72 79 20 43 6f 6e 73  |  - Musbury Cons|
00000040  75 6c 74 61 6e 74 73 20  2d 20 61 6c 6c 20 72 69  |ultants - all ri|
00000050  67 68 74 73 20 72 65 73  65 72 76 65 64 0a 30 31  |ghts reserved.01|
00000060  37 30 36 20 32 31 36 37  30 31 0a 35 20 48 65 6c  |706 216701.5 Hel|
00000070  6d 73 68 6f 72 65 20 52  64 2c 0a 48 61 73 6c 69  |mshore Rd,.Hasli|
00000080  6e 67 64 65 6e 2c 0a 52  6f 73 73 65 6e 64 61 6c  |ngden,.Rossendal|
00000090  65 2c 0a 4c 61 6e 63 73  2e 0a 42 42 34 20 34 42  |e,.Lancs..BB4 4B|
000000a0  47 0a 6d 2e 63 6f 6f 6b  40 6d 6d 75 2e 61 63 2e  |G.m.cook@mmu.ac.|
000000b0  75 6b 0a 0a 54 68 65 20  50 49 43 31 36 43 38 34  |uk..The PIC16C84|
000000c0  20 69 73 20 61 20 70 72  6f 67 72 61 6d 6d 61 62  | is a programmab|
000000d0  6c 65 20 6d 69 63 72 6f  20 63 6f 6e 74 72 6f 6c  |le micro control|
000000e0  6c 65 72 2e 0a 41 70 70  6c 69 63 61 74 69 6f 6e  |ler..Application|
000000f0  73 20 74 6f 20 67 65 6e  65 72 61 74 65 20 73 6f  |s to generate so|
00000100  75 72 63 65 20 63 6f 64  65 20 61 6e 64 20 62 6c  |urce code and bl|
00000110  6f 77 20 74 68 65 20 63  68 69 70 20 77 69 74 68  |ow the chip with|
00000120  20 69 74 20 61 72 65 20  61 76 61 6c 69 61 62 6c  | it are avaliabl|
00000130  65 20 66 72 6f 6d 20 74  68 65 20 73 61 6d 65 20  |e from the same |
00000140  61 75 74 68 6f 72 2e 0a  54 68 69 73 20 61 70 70  |author..This app|
00000150  6c 69 63 61 74 69 6f 6e  20 74 61 6b 65 73 20 61  |lication takes a|
00000160  6e 20 6f 62 6a 65 63 74  20 63 6f 64 65 20 66 69  |n object code fi|
00000170  6c 65 20 61 6e 64 20 65  6d 75 6c 61 74 65 73 20  |le and emulates |
00000180  74 68 65 20 63 68 69 70  20 62 75 74 20 6e 6f 74  |the chip but not|
00000190  20 69 6e 20 72 65 61 6c  20 74 69 6d 65 2e 0a 0a  | in real time...|
000001a0  54 68 65 72 65 20 61 72  65 20 74 77 6f 20 77 69  |There are two wi|
000001b0  6e 64 6f 77 73 2c 20 43  6f 6e 74 72 6f 6c 20 61  |ndows, Control a|
000001c0  6e 64 20 4d 6f 6e 69 74  6f 72 2e 20 54 68 65 20  |nd Monitor. The |
000001d0  6d 65 6e 75 20 63 6f 6e  74 72 6f 6c 73 20 77 68  |menu controls wh|
000001e0  69 63 68 20 61 72 65 20  6f 70 65 6e 65 64 0a 77  |ich are opened.w|
000001f0  68 65 6e 20 79 6f 75 20  63 6c 69 63 6b 20 74 68  |hen you click th|
00000200  65 20 69 63 6f 6e 20 62  61 72 2e 0a 44 72 61 67  |e icon bar..Drag|
00000210  67 69 6e 67 20 61 20 48  45 58 20 66 69 6c 65 20  |ging a HEX file |
00000220  69 6e 74 6f 20 74 68 65  20 63 6f 6e 74 72 6f 6c  |into the control|
00000230  20 77 69 6e 64 6f 77 20  6f 72 20 69 63 6f 6e 20  | window or icon |
00000240  62 61 72 20 6c 6f 61 64  73 20 74 68 65 20 63 6f  |bar loads the co|
00000250  64 65 20 61 6e 64 20 70  65 72 66 6f 72 6d 73 0a  |de and performs.|
00000260  61 20 70 6f 77 65 72 20  75 70 20 72 65 73 65 74  |a power up reset|
00000270  2e 0a 0a 41 6c 6c 20 74  68 65 20 6d 65 6d 6f 72  |...All the memor|
00000280  79 20 61 6e 64 20 72 65  67 69 73 74 65 72 20 69  |y and register i|
00000290  6e 64 69 63 61 74 6f 72  73 20 61 72 65 20 69 6e  |ndicators are in|
000002a0  20 77 72 69 74 61 62 6c  65 20 69 63 6f 6e 73 2e  | writable icons.|
000002b0  20 54 68 65 72 65 20 76  61 6c 75 65 73 20 63 61  | There values ca|
000002c0  6e 20 62 65 20 63 68 61  6e 67 65 64 0a 61 74 20  |n be changed.at |
000002d0  61 6e 79 20 74 69 6d 65  20 62 79 20 63 6c 69 63  |any time by clic|
000002e0  6b 69 6e 67 20 6f 6e 20  74 68 65 20 62 6f 78 20  |king on the box |
000002f0  74 6f 20 67 65 74 20 74  68 65 20 63 61 72 72 61  |to get the carra|
00000300  74 2c 20 74 79 70 69 6e  67 20 69 6e 20 74 68 65  |t, typing in the|
00000310  20 6e 65 77 20 76 61 6c  75 65 20 28 69 6e 20 48  | new value (in H|
00000320  45 58 29 0a 61 6e 64 20  74 68 65 6e 20 68 69 74  |EX).and then hit|
00000330  69 6e 67 20 52 45 54 55  52 4e 2e 20 4e 6f 74 65  |ing RETURN. Note|
00000340  20 6e 65 77 20 76 61 6c  75 65 73 20 61 72 65 20  | new values are |
00000350  6f 6e 6c 79 20 75 73 65  64 20 77 68 65 6e 20 52  |only used when R|
00000360  45 54 55 52 4e 20 69 73  20 68 69 74 2e 0a 0a 54  |ETURN is hit...T|
00000370  68 65 20 57 44 54 45 20  69 63 6f 6e 20 69 73 20  |he WDTE icon is |
00000380  74 68 65 20 63 6f 6e 66  69 67 75 72 61 74 69 6f  |the configuratio|
00000390  6e 20 66 75 73 65 20 66  6f 72 20 74 68 65 20 57  |n fuse for the W|
000003a0  61 74 63 68 64 6f 67 20  54 69 6d 65 72 20 45 6e  |atchdog Timer En|
000003b0  61 62 6c 65 2c 20 77 69  74 68 20 74 68 69 73 20  |able, with this |
000003c0  74 69 63 6b 65 64 0a 74  68 65 20 77 61 74 63 68  |ticked.the watch|
000003d0  20 64 6f 67 20 74 69 6d  65 72 20 77 69 6c 6c 20  | dog timer will |
000003e0  69 6e 63 72 65 6d 65 6e  74 20 65 76 65 72 79 20  |increment every |
000003f0  70 72 6f 67 72 61 6d 6d  65 20 63 79 63 6c 65 2e  |programme cycle.|
00000400  0a 59 6f 75 20 63 61 6e  20 63 68 6f 6f 73 65 20  |.You can choose |
00000410  74 6f 20 73 69 6e 67 6c  65 20 73 74 65 70 20 74  |to single step t|
00000420  68 72 6f 75 67 68 20 69  6e 73 74 72 75 63 74 69  |hrough instructi|
00000430  6f 6e 73 20 6f 72 20 68  61 76 65 20 74 68 65 6d  |ons or have them|
00000440  20 63 6f 6e 74 69 6e 69  6f 75 73 6c 79 20 65 78  | continiously ex|
00000450  69 63 75 69 74 65 64 2e  0a 41 6c 74 65 72 6e 61  |icuited..Alterna|
00000460  74 69 76 6c 79 20 73 65  6c 65 63 74 69 6e 67 20  |tivly selecting |
00000470  53 6b 69 70 20 77 69 6c  6c 20 6d 6f 76 65 20 74  |Skip will move t|
00000480  6f 20 74 68 65 20 6e 65  78 74 20 6d 65 6d 6f 72  |o the next memor|
00000490  79 20 6c 6f 63 61 74 69  6f 6e 2e 20 4e 6f 74 65  |y location. Note|
000004a0  20 74 68 61 74 20 79 6f  75 20 63 61 6e 0a 70 65  | that you can.pe|
000004b0  72 66 6f 72 6d 20 61 20  47 4f 54 4f 20 62 79 20  |rform a GOTO by |
000004c0  74 79 70 69 6e 67 20 74  68 65 20 72 65 71 75 69  |typing the requi|
000004d0  72 65 64 20 76 61 6c 75  65 20 69 6e 20 74 68 65  |red value in the|
000004e0  20 61 64 64 72 65 73 73  20 62 6f 78 2e 0a 54 68  | address box..Th|
000004f0  65 20 53 6c 65 65 70 20  4c 45 44 20 6c 69 67 68  |e Sleep LED ligh|
00000500  74 73 20 75 70 20 77 68  65 6e 20 69 6e 20 74 68  |ts up when in th|
00000510  65 20 73 6c 65 65 70 20  6d 6f 64 65 2c 20 74 68  |e sleep mode, th|
00000520  65 6e 20 6f 6e 6c 79 20  74 68 65 20 77 61 74 63  |en only the watc|
00000530  68 20 64 6f 67 20 74 69  6d 65 72 20 72 75 6e 73  |h dog timer runs|
00000540  2e 0a 0a 54 68 65 20 4d  6f 6e 69 74 6f 72 20 77  |...The Monitor w|
00000550  69 6e 64 6f 77 73 20 6f  6e 6c 79 20 73 68 6f 77  |indows only show|
00000560  73 20 76 61 6c 75 65 73  20 6f 66 20 72 65 67 69  |s values of regi|
00000570  73 74 65 72 73 20 74 68  61 74 20 68 61 76 65 20  |sters that have |
00000580  62 65 65 6e 20 77 72 69  74 74 65 6e 20 74 6f 2e  |been written to.|
00000590  20 59 6f 75 0a 63 61 6e  20 63 68 61 6e 67 65 20  | You.can change |
000005a0  74 68 65 20 76 61 6c 75  65 20 6f 66 20 61 6e 79  |the value of any|
000005b0  20 72 65 67 69 73 74 65  72 20 73 69 6d 70 6c 79  | register simply|
000005c0  20 62 79 20 74 79 70 69  6e 67 20 61 20 76 61 6c  | by typing a val|
000005d0  75 65 20 28 69 6e 20 68  65 78 29 20 61 6e 64 20  |ue (in hex) and |
000005e0  70 72 65 73 73 69 6e 67  20 72 65 74 75 72 6e 2e  |pressing return.|
000005f0  0a 0a 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |..              |
00000600  20 20 20 20 20 20 20 20  20 20 20 20 0a 54 68 65  |            .The|
00000610  72 65 20 61 72 65 20 73  6f 6d 65 20 70 73 75 64  |re are some psud|
00000620  6f 20 72 65 67 69 73 74  65 72 73 20 74 6f 20 68  |o registers to h|
00000630  65 6c 70 20 63 6f 6d 70  65 6e 73 61 74 65 20 66  |elp compensate f|
00000640  6f 72 20 74 68 65 20 75  6e 72 65 61 6c 20 74 69  |or the unreal ti|
00000650  6d 65 20 6f 66 20 74 68  65 20 65 6d 75 6c 61 74  |me of the emulat|
00000660  6f 72 2c 0a 61 73 20 6d  6f 73 74 20 61 70 70 6c  |or,.as most appl|
00000670  69 63 61 74 69 6f 6e 73  20 68 61 76 65 20 6c 6f  |ications have lo|
00000680  6e 67 20 74 69 6d 65 20  64 65 6c 61 79 73 2c 20  |ng time delays, |
00000690  74 68 65 73 65 20 61 72  65 20 27 77 61 74 63 68  |these are 'watch|
000006a0  64 6f 67 20 74 69 6d 65  20 6f 75 74 27 20 61 6e  |dog time out' an|
000006b0  64 20 27 45 70 72 6f 6d  20 54 69 6d 65 27 2e 0a  |d 'Eprom Time'..|
000006c0  0a 54 68 65 20 27 77 61  74 63 68 64 6f 67 20 74  |.The 'watchdog t|
000006d0  69 6d 65 20 6f 75 74 27  20 69 73 20 74 68 65 20  |ime out' is the |
000006e0  6c 69 6d 69 74 20 74 6f  20 77 68 69 63 68 20 74  |limit to which t|
000006f0  68 65 20 57 61 74 63 68  20 64 6f 67 20 74 69 6d  |he Watch dog tim|
00000700  65 72 20 6d 75 73 74 20  72 65 61 63 68 20 62 65  |er must reach be|
00000710  66 6f 72 65 0a 74 72 69  70 69 6e 67 2c 20 69 74  |fore.triping, it|
00000720  20 69 73 20 70 72 65 73  65 74 20 74 6f 20 74 68  | is preset to th|
00000730  65 20 61 70 70 72 6f 78  69 6d 61 74 65 20 6e 75  |e approximate nu|
00000740  6d 62 65 72 20 6f 66 20  63 79 63 6c 65 73 20 74  |mber of cycles t|
00000750  68 65 20 72 65 61 6c 20  74 69 6d 65 72 20 77 6f  |he real timer wo|
00000760  75 6c 64 20 74 61 6b 65  2e 0a 48 6f 77 65 76 65  |uld take..Howeve|
00000770  72 20 69 66 20 79 6f 75  20 77 61 6e 74 20 74 6f  |r if you want to|
00000780  20 73 70 65 65 64 20 74  68 69 6e 67 73 20 75 70  | speed things up|
00000790  20 73 69 6d 70 6c 79 20  74 79 70 65 20 61 20 73  | simply type a s|
000007a0  6d 61 6c 6c 65 72 20 6e  75 6d 62 65 72 20 68 65  |maller number he|
000007b0  72 65 2e 0a 0a 54 68 65  20 27 45 70 72 6f 6d 20  |re...The 'Eprom |
000007c0  54 69 6d 65 27 20 69 73  20 74 68 65 20 6e 75 6d  |Time' is the num|
000007d0  62 65 72 20 6f 66 20 6d  61 63 68 69 6e 65 20 63  |ber of machine c|
000007e0  79 63 6c 65 73 20 62 65  66 6f 72 65 20 64 61 74  |ycles before dat|
000007f0  61 20 69 73 20 77 72 69  74 74 65 6e 20 69 6e 74  |a is written int|
00000800  6f 20 74 68 65 0a 44 61  74 61 20 6d 65 6d 6f 72  |o the.Data memor|
00000810  79 2e 20 54 68 69 73 20  74 61 6b 65 73 20 74 69  |y. This takes ti|
00000820  6d 65 20 69 6e 20 74 68  65 20 63 68 69 70 20 62  |me in the chip b|
00000830  75 74 20 68 65 72 65 20  69 73 20 64 6f 6e 65 20  |ut here is done |
00000840  69 6e 73 74 61 6e 74 6c  79 2e 20 48 6f 77 65 76  |instantly. Howev|
00000850  65 72 2c 20 74 68 65 20  69 6e 74 65 72 72 75 70  |er, the interrup|
00000860  74 0a 6f 6e 20 74 69 6d  65 20 6f 75 74 20 73 74  |t.on time out st|
00000870  69 6c 6c 20 6f 63 63 6f  75 72 73 2e 20 54 6f 20  |ill occours. To |
00000880  6d 61 6b 65 20 74 68 69  73 20 68 61 70 70 65 6e  |make this happen|
00000890  20 66 61 73 74 65 72 20  74 79 70 65 20 61 20 73  | faster type a s|
000008a0  6d 61 6c 6c 65 72 20 6e  75 6d 62 65 72 20 69 6e  |maller number in|
000008b0  20 68 65 72 65 2e 20 4e  6f 74 65 20 74 68 61 74  | here. Note that|
000008c0  0a 69 6e 20 74 68 65 20  64 61 74 61 20 73 68 65  |.in the data she|
000008d0  65 74 73 20 61 20 63 65  72 74 69 61 6e 20 75 6e  |ets a certian un|
000008e0  69 6e 74 65 72 72 75 70  74 65 64 20 73 65 71 75  |interrupted sequ|
000008f0  6e 63 65 20 6f 66 20 6f  70 65 72 61 74 69 6f 6e  |nce of operation|
00000900  73 20 69 73 20 6e 65 65  64 65 64 20 66 6f 72 20  |s is needed for |
00000910  61 20 73 75 63 65 73 73  66 75 6c 6c 20 77 72 69  |a sucessfull wri|
00000920  74 65 2c 0a 68 65 72 65  20 6f 6e 6c 79 20 74 68  |te,.here only th|
00000930  65 20 6c 61 73 74 20 73  74 61 67 65 20 6f 66 20  |e last stage of |
00000940  73 65 74 74 69 6e 67 20  74 68 65 20 77 72 69 74  |setting the writ|
00000950  65 20 62 69 74 20 69 6e  20 45 45 43 4f 4e 31 20  |e bit in EECON1 |
00000960  28 77 69 74 68 20 69 74  20 70 72 65 76 69 6f 75  |(with it previou|
00000970  73 6c 79 20 62 65 69 6e  67 20 63 6c 65 61 72 65  |sly being cleare|
00000980  64 29 0a 69 73 20 72 65  71 75 69 72 65 64 2e 0a  |d).is required..|
00000990  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20  |                |
000009a0  20 20 20 20 20 20 20 20  20 20 20 20 20 20 0a 59  |              .Y|
000009b0  6f 75 20 63 61 6e 27 74  20 61 63 63 65 73 73 20  |ou can't access |
000009c0  74 68 65 20 70 72 65 73  63 61 6c 65 72 20 69 6e  |the prescaler in|
000009d0  20 74 68 65 20 72 65 61  6c 20 63 68 69 70 20 68  | the real chip h|
000009e0  65 72 65 20 79 6f 75 20  63 61 6e 2c 20 69 74 20  |ere you can, it |
000009f0  63 6f 75 6e 74 73 20 75  70 20 69 6e 20 69 6e 63  |counts up in inc|
00000a00  72 65 6d 65 6e 74 73 0a  64 65 70 65 6e 64 69 6e  |rements.dependin|
00000a10  67 20 6f 6e 20 74 68 65  20 70 72 65 73 63 61 6c  |g on the prescal|
00000a20  6c 65 72 20 64 69 76 69  73 69 6f 6e 20 72 61 74  |ler division rat|
00000a30  69 6f 2e 20 46 6f 72 20  65 78 61 6d 70 6c 65 20  |io. For example |
00000a40  77 69 74 68 20 61 20 31  3a 34 20 72 61 74 69 6f  |with a 1:4 ratio|
00000a50  20 69 74 20 77 69 6c 6c  20 63 6f 75 6e 74 20 75  | it will count u|
00000a60  70 20 69 6e 0a 69 6e 63  72 65 6d 65 6e 74 73 20  |p in.increments |
00000a70  6f 66 20 34 30 68 2e 0a  0a 42 72 65 61 6b 20 70  |of 40h...Break p|
00000a80  6f 69 6e 74 73 3a 20 54  6f 20 73 65 74 20 61 20  |oints: To set a |
00000a90  62 72 65 61 6b 20 70 6f  69 6e 74 20 74 79 70 65  |break point type|
00000aa0  20 69 6e 20 74 68 65 20  68 65 78 20 61 64 64 72  | in the hex addr|
00000ab0  65 73 73 20 61 6e 64 20  70 72 65 73 73 20 65 6e  |ess and press en|
00000ac0  74 65 72 2e 0a 20 20 20  20 20 20 20 20 20 20 20  |ter..           |
00000ad0  20 20 20 54 6f 20 63 6c  65 61 72 20 61 20 62 72  |   To clear a br|
00000ae0  65 61 6b 20 70 6f 69 6e  74 20 65 6e 74 65 72 20  |eak point enter |
00000af0  61 6e 64 20 61 64 64 72  65 73 73 20 67 72 65 61  |and address grea|
00000b00  74 65 72 20 74 68 61 6e  20 74 68 65 20 6d 61 78  |ter than the max|
00000b10  69 6d 75 6d 20 6f 66 20  33 46 46 0a 20 20 20 20  |imum of 3FF.    |
00000b20  20 20 20 20 20 20 20 20  20 20 57 68 65 6e 20 61  |          When a|
00000b30  20 72 75 6e 6e 69 6e 67  20 70 72 6f 67 72 61 6d  | running program|
00000b40  20 65 6e 63 6f 75 6e 74  65 72 73 20 61 20 62 72  | encounters a br|
00000b50  65 61 6b 20 70 6f 69 6e  74 20 69 74 20 77 69 6c  |eak point it wil|
00000b60  6c 20 73 74 6f 70 20 61  6e 64 20 67 6f 20 69 6e  |l stop and go in|
00000b70  74 6f 20 74 68 65 0a 20  20 20 20 20 20 20 20 20  |to the.         |
00000b80  20 20 20 20 20 73 69 6e  67 6c 65 20 73 74 65 70  |     single step|
00000b90  20 6d 6f 64 65 2e 0a 0a  57 69 74 68 20 73 75 63  | mode...With suc|
00000ba0  68 20 61 20 63 6f 6d 70  6c 65 78 20 61 70 70 6c  |h a complex appl|
00000bb0  69 63 61 74 69 6f 6e 20  69 74 20 69 73 20 6e 6f  |ication it is no|
00000bc0  74 20 70 6f 73 73 61 62  6c 65 20 74 6f 20 74 65  |t possable to te|
00000bd0  73 74 20 69 74 20 73 75  66 66 69 63 65 6e 74 6c  |st it sufficentl|
00000be0  79 20 74 6f 20 66 69 6e  64 20 61 6e 79 20 64 69  |y to find any di|
00000bf0  73 63 72 65 70 61 6e 63  69 65 73 0a 62 65 74 77  |screpancies.betw|
00000c00  65 65 6e 20 69 74 73 20  61 63 74 69 6f 6e 20 61  |een its action a|
00000c10  6e 64 20 74 68 61 74 20  6f 66 20 74 68 65 20 72  |nd that of the r|
00000c20  65 61 6c 20 63 68 69 70  2e 20 49 66 20 79 6f 75  |eal chip. If you|
00000c30  20 63 6f 6d 65 20 61 63  63 72 6f 73 73 20 61 6e  | come accross an|
00000c40  79 20 6f 66 20 74 68 65  73 65 20 70 6c 65 61 73  |y of these pleas|
00000c50  65 20 6c 65 74 20 6d 65  20 6b 6e 6f 77 0a 61 74  |e let me know.at|
00000c60  20 74 68 65 20 61 64 64  72 65 73 73 20 6f 72 20  | the address or |
00000c70  65 6d 61 6c 65 20 67 69  76 65 6e 20 61 74 20 74  |emale given at t|
00000c80  68 65 20 74 6f 70 20 6f  66 20 74 68 65 20 70 61  |he top of the pa|
00000c90  67 65 2e 0a 4c 65 67 61  6c 20 73 74 75 66 66 2e  |ge..Legal stuff.|
00000ca0  0a 49 20 64 6f 20 6e 6f  74 20 61 63 63 65 70 74  |.I do not accept|
00000cb0  20 72 65 73 70 6f 6e 73  69 62 69 6c 69 74 79 20  | responsibility |
00000cc0  66 6f 72 20 61 6e 79 74  68 69 6e 67 3a 2d 20 42  |for anything:- B|
00000cd0  6f 73 6e 69 61 2c 20 4e  6f 72 74 68 65 72 6e 20  |osnia, Northern |
00000ce0  49 72 65 6c 61 6e 64 2c  20 74 68 65 20 4d 69 64  |Ireland, the Mid|
00000cf0  64 6c 65 20 45 61 73 74  0a 6f 72 20 61 6e 79 74  |dle East.or anyt|
00000d00  68 69 6e 67 20 74 68 69  73 20 70 72 6f 67 72 61  |hing this progra|
00000d10  6d 20 6d 61 79 20 6f 72  20 6d 61 79 20 6e 6f 74  |m may or may not|
00000d20  20 64 6f 2e 0a                                    | do..|
00000d25