home *** CD-ROM | disk | FTP | other *** search
-
- No System File Loader V1.1 - By Phil!94 - 26-4-94
- -------------------------------------------------
-
- * Wanna contact me? I'm at:- 43 Fairholme Rd,
- Hodge Hill,
- Birmingham,
- B36 8HN.
- England.
-
- This Routine allows you to load AmigaDos standard binary files without
- using the ROM system software at all. You give the location of the
- filename and where in ram you want the file loaded and the code does the
- rest! In this 1 drive version all loads are taken to come from the drive
- specified in the label 'DRIVE'. This label is provided for test purposes
- more or less. If you want to properly access multiple drives use the
- multidisk version of this routine. Full error return codes are given upon
- return from load.
-
- The code will let you load files from within subdirectories by simply
- adhering to the standard amiga syntax in file names. Eg:to load the file
- "Turkey" in directory "FOWL", the filename should be:"FOWL/TURKEY,($00)"
- However dont use any fancy wildcards in the filenames etc. Upper/lower
- case characters are treated as the same character.
-
- LOADING A FILE
- --------------
-
- Before loading for the 1st time ONLY,you MUST call "INIT_DISK"
- You never need to call it again.
-
- To load a file just set A5,A6 AND D7 as shown:-
-
- SET A5 = Load address. This will return as last byte address of file+1 if
- load succesful - make even aligned for 68000 compatibility.
-
- SET A6 = Location of zero-terminated filename ascii string.
-
- SET D7 = Mode of Operation :
-
- 00 = Normal load.
- 01 = Search, and return file length (if found) in A5 only.
-
- Then JSR / BSR 'FILE_LOAD' - All registers are saved except A5 as explained
- above and D7 which returns 00 if load successful or one of these reports:-
-
- 01 = No speed signal from motor (ejected disk whilst loading?)
- 02 = No DMA transfer - time out (bad disk / '' '' )
- 03 = No Disk in drive.
- 04 = Can't find that disk block (disk corrupt)
- 05 = Wrong track marker ID ('')
- 06 = Checksum error on disk block ('')
- 07 = Block number out of range ('')
- 08 = Not a file specifed (thats a directory!)
- 09 = File not found. (obvious!)
-
- If error report occurs, its up to you to display an appropiate message
- (or disk requester in the case of error $03).. 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 its an alignment problem.
-
- IMPORTANT:-
- -----------
-
- After you've finished loading a batch of files (or just one) you should shut
- down the drive. 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 each file. The motor will only be left running (ready
- for next file) if there has not been any error report! 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 interrupts or use the blitter!
- The code is obviously not designed to multitask 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 any of your
- code uses the cia's!)
-
- The example call on the source returns to dos after completion, this is
- only for test purposes.. DO NOT attempts any 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 multidisk / multidrive disk loading see
- the the source and docs for "MultiDiskFileLoader".
-
- -----------------------------------------------------------------------------
-
- QUICK EXAMPLE OF USE:
-
- move.w #$4000,$dff09a ;Disable Irqs
-
- moveq #0,d7 ;actual load please
- GO move.l #$c0000,a5 ;load address
- move.l #filname,a6 ;file name address
-
- jsr LOAD_FILE
- tst.w d7 ;how did it go?
- beq.s LOAD_OK
-
- bsr SHOW_REPORT ;YOUR ROUTINE!
-
- LOAD_OK jsr MOTOR_OFF
- move.w #$c000,$dff09a
- rts
-
- Filename dc.b "Vegetables/Cabbage",$0
-
- -------------------------------------------------------------------------------
-
-