WHDLoad MantisBT - RawDIC
View Issue Details
0003968RawDIC[All Projects] Generalpublic2018-09-24 17:552022-06-07 01:36
ReporterStingRay 
Assigned ToWepl 
PrioritynormalSeverityblockReproducibilityalways
StatusresolvedResolutionfixed 
PlatformOSOS Version
Product Version5.0 
Target VersionFixed in Version6.0 
MachineA4000
CPU68060
CPUSpeed50
ChipSetAGA
GFXCardPicasso IV
ChipMem2 MB
FastMem96 MB
WorkbenchOS 3.1
KickROM40 - Kick 3.1
KickSoftNone
Summary0003968: Defininig a tracklist with tracks in reversed order gives "No Disk in Drive" Error
DescriptionWhen defining a tracklist with tracks in descending order (f.e. 159 -> 158) rawDIC quits with "No Disk in Drive!" error (DFLG_NORESTRICTIONS is set). This of course doesn't make sense at all and should be corrected.

Workaround for now is using one entry per track (I'm using a MACRO for this) but this increases the size of the resulting executable quite a bit for obvious reasons.
Steps To ReproduceCreate a tracklist in descending order such as:

.disk1 dc.l 0 ; Pointer to next disk structure
    dc.w 1 ; Disk structure version
    dc.w DFLG_NORESTRICTIONS ; Disk flags
    dc.l .tracks ; List of tracks which contain data
    dc.l 0 ; UNUSED, ALWAYS SET TO 0!
    dc.l FL_DISKIMAGE
    dc.l 0 ; Table of certain tracks with CRC values
    dc.l 0 ; Alternative disk structure, if CRC failed
    dc.l 0 ; Called before a disk is read
    dc.l 0 ; Called after a disk has been read


.tracks TLENTRY 159,000,$1800,SYNC_STD,DecodeTrack
    TLEND


and start the imaging process. It will not work.
 
TagsNo tags attached.
Attached Files? Guardian_ImagerSlave.s (3,955) 2022-06-07 01:36
http://www.whdload.de/mantis/file_download.php?file_id=1402&type=bug

Notes
(0006397)
Wepl   
2018-09-25 11:46   
descending order of tracks was probably never forseen
allowing this requires probably checking for other side effects
ATM I can't tell when I will find time to fix this ;)
(0006398)
StingRay   
2018-09-25 13:53   
(Last edited: 2018-09-25 13:56)
It's not urgent as it's easy to workaround this problem, my current solution to read the disk backwards looks like this:

ML MACRO
.T SET 159
    REPT 160
    TLENTRY .T,.T,$1800,SYNC_STD,DecodeTrack
.T SET .T-1
    ENDR
    ENDM


tracks ML
    TLEND

and works fine. :) For reference, this is needed for the game Guardian as the tracks (and hence also the file data) are stored in backwards order. :)

(0011374)
Wepl   
2022-05-30 23:21   
do you have an Guardian disk image for me for testing?
(0011375)
StingRay   
2022-05-30 23:49   
Hi Bert, the IPF images can be found on the EAB file server: https://grandis.nu/turran/FTP/TOSEC/Games/Commodore%20Amiga%20-%20Games%20-%20SPS/Guardian%20(1995)(Guildhall)(AGA)[0835].zip
(0011389)
Wepl   
2022-06-07 01:36   
Is fixed in new release.
I think it never did work before.
RawDIC release has been bumped to 6. So I recommend to use ISlave version = 6 to request the new RawDIC.
Updated Guardian imager source attached.

Issue History
2018-09-24 17:55StingRayNew Issue
2018-09-25 11:46WeplNote Added: 0006397
2018-09-25 11:46WeplAssigned To => Wepl
2018-09-25 11:46WeplStatusnew => assigned
2018-09-25 13:53StingRayNote Added: 0006398
2018-09-25 13:56StingRayNote Edited: 0006398bug_revision_view_page.php?bugnote_id=6398#r952
2022-05-30 23:21WeplNote Added: 0011374
2022-05-30 23:49StingRayNote Added: 0011375
2022-06-07 01:33WeplSeverityminor => block
2022-06-07 01:33WeplFixed in Version => 6.0
2022-06-07 01:36WeplStatusassigned => resolved
2022-06-07 01:36WeplResolutionopen => fixed
2022-06-07 01:36WeplNote Added: 0011389
2022-06-07 01:36WeplFile Added: Guardian_ImagerSlave.s