English Amiga Board


Go Back   English Amiga Board > Coders > Coders. General

 
 
Thread Tools
Old 19 January 2008, 11:28   #1
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
Custom MFM & Dos tracks

Hi guys

A quick query really

i'm looking at a game that uses both custom mfm and dos mfm tracks on the same disk, and i'm curious about the doio structure

now the filesize being passed to the iorequest structure is $00072800 bytes, and generally loads to $59e8 (though this changes as allocmem is used).

Now the game actually only loads about 3-4kb into ram and not 468992 bytes as passed to the iorequest structure!

Could this be due to the game hitting an unreadable mfm encoded track? or maybe i'm missing something!

I broke into the bootblock in a few places and I checked the iorequest offset myself so I know the size is right!

Also after the doio command the game then clears d0, clears $24 of the iorequest and then does a #cmd_nonstd before doing another doio.. what does this do?

Last edited by BippyM; 19 January 2008 at 23:01.
BippyM is offline  
Old 19 January 2008, 12:13   #2
Thorham
Computer Nerd
 
Thorham's Avatar
 
Join Date: Sep 2007
Location: Rotterdam/Netherlands
Age: 47
Posts: 3,751
Are you sure it's 3 to 4 kb? Couldn't it be 5kb? I'm asking because when you pass the nr of bytes to be read to the hardware, only the lower 13 bits of the register are used for size. This means that only $2800 would be used for size and not $72800! $2800 is 10kb, and since mfm encoding requires reading twice the amount of data (mfm coding doubles the nr of bytes) this would end up reading 5kb of real data to memory.

By the way, dos uses mfm encoding. The only other format is gcr, which uses a more compact form of encoding, and can therefore store more data on the disk.

Since I don't know much about this topic, though, I could be completely wrong. In that case I'll just
Thorham is offline  
Old 19 January 2008, 12:20   #3
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
Okay it is using execs standard doio command and the track(s) are in standard dos format, the rest is encoded with more data on the tracks

I guess $2800 could be read in, but that is far too much data, it only lasts for about 3-4kb.. tho there is no saying the rest of the data is blank or padded out!
BippyM is offline  
Old 19 January 2008, 12:25   #4
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,505
Quote:
Originally Posted by bippym View Post
#cmd_nonstd
TD_MOTOR = CMD_NONSTD
Toni Wilen is offline  
Old 19 January 2008, 12:29   #5
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
so it basically just turns on the drive motor hmmmmm
BippyM is offline  
Old 19 January 2008, 13:04   #6
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,505
Quote:
Originally Posted by bippym View Post
so it basically just turns on the drive motor hmmmmm
More like turns off the motor. Check trackdisk.device autodocs first
Toni Wilen is offline  
Old 19 January 2008, 17:35   #7
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
yeah that's what i meant ;-) i had checked the trackdisk autodocs and then posted. If what thoram says is correct how are large file sizes passed to be read if only the lower 13bits are used?
BippyM is offline  
Old 19 January 2008, 23:03   #8
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
I changed the title and some of my first post to make it more understandable

I'm still confused as to why $72800 is passed to the iorequest structure..

again if only the lower 13bits are used, then $2800 is perhaps all that is loaded, but then how would the game handle a file that is larger?

I am kerfuffled
BippyM is offline  
Old 20 January 2008, 23:19   #9
Codetapper
2 contact me: email only!
 
Codetapper's Avatar
 
Join Date: May 2001
Location: Auckland / New Zealand
Posts: 3,182
Are you sure you are not confusing the hardware register $dff024 and the IO request structure?

Reading a track of data by hitting $dff024 twice certainly only looks at the lower bits, but an IO request should read the whole data.
Codetapper is offline  
Old 21 January 2008, 00:35   #10
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
no i'm looking at the iorequest structure (as pointed to by a1)

I can post the whole bootblock if you want to see it!

the file is actually only 4096 bytes.
BippyM is offline  
Old 21 January 2008, 00:59   #11
Thorham
Computer Nerd
 
Thorham's Avatar
 
Join Date: Sep 2007
Location: Rotterdam/Netherlands
Age: 47
Posts: 3,751
Please do. That would be quite useful. It's always a bit easier when there's some code to look at.
Thorham is offline  
Old 21 January 2008, 01:06   #12
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
here is a screenshot of the bootblock.

I was going to resource it, but there is no need, any half decent asm guy will know what is happening


I know what is loaded, and I have it saved to disk, I just don't know why only 4096 bytes is saved!

I'll post a pic of the registers if needed

Last edited by BippyM; 01 November 2008 at 18:13.
BippyM is offline  
Old 21 January 2008, 07:38   #13
Codetapper
2 contact me: email only!
 
Codetapper's Avatar
 
Join Date: May 2001
Location: Auckland / New Zealand
Posts: 3,182
That looks like a normal bootblock from a game that then loads a Rob Northen loader - can you tell us what game it is from?

According to my Mapping the Amiga book, the io_Length field is an unsigned long, so should read the full amount. Unless something smart is happening like it's loading the data over the code and bailing out or something odd...

If we can look at the game itself that might help...
Codetapper is offline  
Old 21 January 2008, 14:23   #14
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
The game is wipe-out (SPS #0161)
BippyM is offline  
Old 22 January 2008, 06:09   #15
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
Did you take a look Codetapper?

Basically Horace wants me to do a whdload install, currently it is far too complex for my asm knowledge, but I hope to ry and learn as much as etc.. a real tangable project
BippyM is offline  
Old 25 January 2008, 13:25   #16
meynaf
son of 68k
 
meynaf's Avatar
 
Join Date: Nov 2007
Location: Lyon / France
Age: 51
Posts: 5,323
According to the code shown in the image, it's $5800, not $72800, which is passed to DoIo.
There's nothing mysterious in that code
meynaf is offline  
Old 25 January 2008, 13:56   #17
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
err where do you get $5800 from?

I jumped in directly before the jump to allocmem and d0 contained $72800 as did the io-request structure pointed to by a1!

I'll do another screenshot if you require it

Last edited by BippyM; 25 January 2008 at 14:08.
BippyM is offline  
Old 25 January 2008, 14:21   #18
meynaf
son of 68k
 
meynaf's Avatar
 
Join Date: Nov 2007
Location: Lyon / France
Age: 51
Posts: 5,323
Quote:
Originally Posted by bippym View Post
err where do you get $5800 from?

I jumped in directly before the jump to allocmem and d0 contained $72800 as did the io-request structure pointed to by a1!

I'll do another screenshot if you require it
I got the $5800 from the instruction located at 05003c (look in your screenshot).
meynaf is offline  
Old 25 January 2008, 14:57   #19
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
that is the offset on disk to look for the data not the length of the data!

Track 5 I think!
BippyM is offline  
Old 25 January 2008, 15:24   #20
meynaf
son of 68k
 
meynaf's Avatar
 
Join Date: Nov 2007
Location: Lyon / France
Age: 51
Posts: 5,323
Quote:
Originally Posted by bippym View Post
that is the offset on disk to look for the data not the length of the data!

Track 5 I think!
Oops... My mistake...


The code reads from track #4 (4*512*11), 5th track if you prefer.
The length of the data is available chip memory, minus 31.5k, and rounded to a multiple of 512 bytes ($72800 in your case).

That (pretty dirty IMO) code won't work if there is 1 or 2 Mb of chip memory...

So you're right, it tries to read $72800 bytes, but, of course, it can stop if there is an unreadable track (or simply an unreadable block). That's probably what happens to you.

Now what's really read from disk (in terms of contents) ? Looking at this new code (should be code because we jump to it) might help in understanding how much data really needed to be read.
meynaf is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
PCMCIA fault: DOS error code 225 - Not a valid DOS disk 4am support.Hardware 2 07 April 2012 10:20
Wanted: MS-Dos 6.22 & Windows 3.1 floppies scrappysphinx MarketPlace 6 23 June 2010 18:03
mfm/custom regs/track loader snyp Coders. General 9 06 June 2006 19:42
Disk2FDI & Custom Disk Formats jmmijo support.Apps 9 14 April 2002 22:01
Tracks&Fields cosmiq request.Apps 3 09 April 2002 09:53

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 07:21.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.59481 seconds with 15 queries