home *** CD-ROM | disk | FTP | other *** search
-
- MultiDiskTrackLoader V1.1- System-Free Dos Block Loader!
- -------------------------------------------------------
-
- By Phil!94/LSD 26/4/94.
-
- Wanna contact me? I'm at: 43 Fairholme Rd,
- Hodge Hill,
- Birmingham,
- B36 8HN.
- England.
-
- DESCRIPTION
- -----------
-
- This piece of code enables you to load bytes off dos tracks directly from
- disks in a multi-disk / multidrive environment without using the ROM system
- software. You can load from any of 127 disks and all drives df0-df4
- (as available) will be checked for the disk you require OR you can access
- a drive directly - Full error checking is provided.
-
- LOADING:
- --------
-
- You MUST call "INIT_DISK" before loading any data for the 1st ever time!
- This initializes the drives and variables - you never need to call this
- routine again, not even after 'MOTOR_OFF'.
-
- To LOAD, First set the registers A6, D5, D6 and D7 as shown:-
-
- Move.L #Destination Address,A6
- Moveq #Disk / Drive Number to load from,D5 (See below)
- Move.l #Bytes to load,D6
- Move.w #Starting Block ($0-$6df),D7
-
- There are 2 ways of setting D5, If you want to load from a named DISK
- then just set D5 with Moveq #disk,D4.. BUT if you want to directly access
- a drive Make sure the high word of D5 is -1 and the low word is the drive
- number. EG:- Move.l #$ffff000x,d5.. Where x is the drive 0 - 3.
-
- Then call: "BLOCK_LOAD" - All registers preserved except D7.
-
- D7 returns as 00 is load OK. Else one of the following errors:
-
- 01 = No speed signal from motor (disk ejected whilst loading)
- 02 = No DMA transfer time out (no sync / '' '' )
- 03 = Disk removed from drive (whilst loading)
- 04 = Can't find that disk block (disk corrupt)
- 05 = Wrong track marker ID ('')
- 06 = Checksum error on disk block ('')
- 07 = Block number req'd too big (you've (in)directly asked for >$6df)
- 08 = Disk requester (Disk specifified in D5 isnt inserted)
- 09 = No disk in that drive (Direct drive access failed)
- 0A = That drive is not connected ('' '')
-
- 'NAMING' DISKS
- --------------
-
- This system does not use the names on the root block $370 as for normal
- file type loading as you dont really want a pointless root block stuck
- right in the middle of your data tracks. So disks are identified by the
- 2 words at $8 & $a on the boot block. The first should be $5052 (ascii "PR")
- to identify disks that are to work with this loader. The next word should
- be $00xx where xx is the disk number from $00 to $7f.. This system does not
- appear to stop the Amiga booting the disks!
-
- DISK REQUESTS
- -------------
-
- If error report occurs, its up to you to display an appropiate message
- (or disk requester in the case of error $08).. You can then if you want
- jump straight back to your 'set-registers and call load' bit of code as
- the program switches off the drive, and waits 1 second before exit.IE: It
- does things properly NOT leaving the motor running for example! Actual
- MFM (disk corrupt) errors are only returned after the program has tried
- to re-read the dodgey track 12 times! - during which time it will have
- reset the disk head etc in case of alignment problems.
-
- IMPORTANT!
- ----------
-
- To shut down the drive after youve finished loading for a while - call
- "MOTOR_OFF" - I did not make this automatic as it would have meant stopping
- and restarting the motor needlessly and wasting time waiting for the motor
- to reach the right speed between loads. The motor will only be left running
- (ready for the next load) if there was no error return! The code will always
- sense if the motor needs to be restarted and will perform this task.
-
- GENERAL INFO
- ------------
-
- The loader contains thorough error checking and should not lock up.
- You can even eject a disk whilst loading and it will return an error as
- normal! I've tested it on A500-A1200 with no problems - Timing is made
- using CIAB timer b so CPU speed will make NO difference. It doesnt generate
- any interrupts, lock out any interupts or use the blitter. The code is
- obviously not designed to multitask - you'd use TRACKDISK_DEVICE for
- system friendly loading! -So make sure you knock out the system IRQs when
- testing. You can run your own interrupts whilst loading takes place
- (EG:copper,VBL etc - but be careful if using the cia's!)
-
- The example call on the source returns to dos after completion, this is
- only for test purposes.. DO NOT attempts any further normal dos disk activity
- cus the Amiga will not realize that the heads have been shifted etc and it
- probably will corrupt your disk(s).. Also the example calls have a large
- load buffer for testing (128k) so dont be put off by the executable file
- size!
-
- Abrieviated info also contained at the start of the source code together
- with an example load call. For simple 1 drive loading see the source and
- docs for "TrackLoader".
-
- -----------------------------------------------------------------------------
-
- QUICK EXAMPLE OF USE:
-
- move.w #$4000,$dff09a ;Disable Irqs
-
- JSR INIT_DISK
-
- GO move.w #$1,d5 ;load from disk named 1
- move.l #$12345,d6 ;bytes to load
- move.w #$370,d7 ;start at block $370
- move.l #$c0000,a6 ;load address
- jsr BLOCK_LOAD
- tst.w d7 ;how did it go?
- beq.s LOAD_OK
-
- bsr SHOW_ERROR_REPORT ;your routine
-
- LOAD_FINE bsr MOTOR_OFF
-
- move.w #$c000,$dff09a
- rts
-
- -----------------------------------------------------------------------------
-
-