English Amiga Board


Go Back   English Amiga Board > Support > support.WinUAE

 
 
Thread Tools
Old 24 September 2005, 15:32   #1
TrojanBarber
 
Posts: n/a
Assign command problem...

If i put these three lines in S/Startup-Sequence on DH0:

Assign LEGEND.0: DH0:LEGEND.0/
Assign LEGEND.1: DH0:LEGEND.1/
Assign LEGEND.2: DH0:LEGEND.2/

it gives error : Cant find DH0:LEGEND.0/
Assign failed returncode 20

But, if i type Assign LEGEND.0: DH0:LEGEND.0/ in prompt it works!
Why? what i am missing here?

Legend.0 dir is present on DH0: device
Amiga 500 1mb V1.3 normal WinUAE configuration running on WinUAE v1.0
Hard disk working great under all programs...
Thx for any info/solution
 
Old 24 September 2005, 16:41   #2
BippyM
Global Moderator
 
BippyM's Avatar
 
Join Date: Nov 2001
Location: Derby, UK
Age: 48
Posts: 9,355
Try removing the .0 part of the path.. though that shouldn't make much difference
BippyM is offline  
Old 24 September 2005, 17:12   #3
onedevotee75
Registered User
 
onedevotee75's Avatar
 
Join Date: Aug 2005
Location: Germany
Posts: 46
I testet it with an wb13 installation on hd. I created the folders with the same name on the harddrive, added the assign commands to the startup-sequence of the hd and it works. no error message. Maybe you can install another version of wb13 (if you have ) and try again.

PS: It doesn´t matter really but maybe you could post your whole startup-sequence of the harddrive here?
onedevotee75 is offline  
Old 24 September 2005, 22:10   #4
TrojanBarber
 
Posts: n/a
I tried naming different folders, no luck...
It seems like WinUAE V1.0 doesnt actually see harddisk( but boots sucessfully) while executing DH0:S/Startup-Sequence. And once execution halts on error everything works fine if you type line by line... Maybe a bug introduced in V1.0?
Whole Startup-Sequence is :

Assign LEGEND.0: DH0:LEGEND.0/
Assign LEGEND.1: DH0:LEGEND.1/
Assign LEGEND.2: DH0:LEGEND.2/
Info
Assign SER: REMOVE
Assign PAR: REMOVE
Assign PRT: REMOVE
Assign RAM: REMOVE
Intro
LOF

I am really puzzled!!!
Anyone can think of solution?
Thx
 
Old 24 September 2005, 22:52   #5
Chuckles
The Ancient One
 
Join Date: Feb 2002
Location: Kansas City/USA
Age: 69
Posts: 685
Try leaving off the "/" at the end of each of the assigns. It should be unnecessary, and may be the problem.
Chuckles is offline  
Old 25 September 2005, 01:48   #6
TrojanBarber
 
Posts: n/a
I just did same error message and if i type line in prompt it works just as with slash / added...
I tried few versions of assign from WB1.2 and WB1.3 same result
It seems that directory cant be found when executing command in Startup-Sequence (tried both DF0: and DH0 but manually typing that line works like it should...
Argghhhh i wanna play Legend of Faerghail from HD )))))
Thx
 
Old 25 September 2005, 08:44   #7
onedevotee75
Registered User
 
onedevotee75's Avatar
 
Join Date: Aug 2005
Location: Germany
Posts: 46
How did you create the hardfile? Is it just an hdf, which you created by typing the size and then clicking the button "create" or how did you create it? Did you activate the RDB Mode? Or is the hd just a directory from windows?
onedevotee75 is offline  
Old 25 September 2005, 13:17   #8
Codetapper
2 contact me: email only!
 
Codetapper's Avatar
 
Join Date: May 2001
Location: Auckland / New Zealand
Posts: 3,187
What happens if you remove that stuff from the startup-sequence, add it to a batch file with the default icon set to IconX which runs the game like so:

Code:
Assign LEGEND.0: DH0:LEGEND.0/
Assign LEGEND.1: DH0:LEGEND.1/
Assign LEGEND.2: DH0:LEGEND.2/
cd LEGEND.0:       ;Do whatever here to start the game
RunGame
Maybe the assigns will work later on after Workbench has loaded properly?
Codetapper is offline  
Old 25 September 2005, 16:50   #9
OddbOd
Registered User
 
Join Date: Jul 2005
Location: Australia
Age: 47
Posts: 666
It's just a Kickstart quirk, I don't know what the real cause is but the solution is simple. First make sure you have the wait command in your path and add the line:
Code:
wait 1 secs
to your startup-sequence before your assigns.
OddbOd is offline  
Old 25 September 2005, 16:56   #10
CodyJarrett
Global Moderator
 
CodyJarrett's Avatar
 
Join Date: Mar 2001
Location: UK
Age: 46
Posts: 6,162
If you are running the game from a script in the directory as Codetapper suggests, then it's better to use:

Code:
Assign LEGEND.0: ""
Assign LEGEND.1: ""
Assign LEGEND.2: ""
RunGame
The "" points to the current directory and avoids hardcoding paths. If the directory is moved around then it will still work.
CodyJarrett is offline  
Old 25 September 2005, 21:01   #11
TrojanBarber
 
Posts: n/a
Now this is really strange...

onedevotee75 : HD is just windows directory (i really like it this way so i can have fast access to any file on HD) and is working really nice in all programs and games. RDB Mode? Pls explain.

Codetapper: Just tried it with batch files but its same ; just dont wanna execute first line in startup-sequence as it should.

OddbOd: Nice idea but now see this
wait 1 secs .... gives Bad args, Wait failed returncode 20
wait 1 sec .... gives Bad args, Wait failed returncode 20
wait 1 .... gives Error in number, Wait failed returncode 20
wait "1" .... gives Bad args, Wait failed returncode 20
If i type any of this 4 variants, it works!!!! What is going on here? This didnt happend on my real amiga 500 1mb v1.3 with 20mb HDD back in 1989!!! This must be bug where any argument after first command in DH0:S/startup-sequence is not understud correctly...

CodyJarrett:
Assign LEGEND.0: "" .... gives Bad args, Assign failed returncode 20
if i type it ; it works and assigns correctly

This is maybe a bug when working with windows directory acting as HDD?
Thx guys for trying to help

Edit: here is my WinUAE V1.0 configuration if someone needs

Attached Files
File Type: uae Amiga 500 V1.3 Expanded Memory with HDD.uae (11.1 KB, 180 views)

Last edited by TrojanBarber; 25 September 2005 at 21:09.
 
Old 25 September 2005, 22:46   #12
onedevotee75
Registered User
 
onedevotee75's Avatar
 
Join Date: Aug 2005
Location: Germany
Posts: 46
i am not really sure, wht this rdb mode is. i dont use it. i have read that this has something to do with scsi and partitioning harddrives. But i am not sure.

It´s very strange behaviour of your hd, really One more possibility what you could try,is scanning for viruses. Maybe there is one ore more on your workbench hd. Did you check it for these ugly code?

By the way, i have tested with your configuration with ha wb13 installation on a hdf and an windows folder. There were no cmmand problems but the emulation was very very slow. I would consider two tweaking points in the config: with the current ram settings i would set chipset to ocs and fast copper on for getting an A500.
onedevotee75 is offline  
Old 26 September 2005, 00:08   #13
TrojanBarber
 
Posts: n/a
No viruses or ugly codes found on HD

But it works like charm here on my P4 2.4C 1GB SL-86SPE-L GeForce 6800GT 120GBHD etc. And i preffer acurate emulation if my rig can handle it Its just this problem which is bugging me

Well if nobody else come with some solution, i ll wait for WinUAE v1.1 relase date (soon i hope ) maybe that version solves this...
 
 


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
CD32 command line problem MrX_Cuci support.WinUAE 8 13 December 2010 00:35
Assign command with Leisure Suit Larry adalsgaard support.Games 34 29 November 2009 11:37
f1gp: hd installation and assign.. jolly11 support.Games 1 21 November 2009 11:57
Assign command fc.studio support.Apps 2 28 December 2005 18:36
Multi-Assign Shoonay support.Apps 17 12 April 2005 15:16

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 22:40.

Top

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