Re: [hatari-devel] Error when saving files

[ Thread Index | Date Index | More lists.tuxfamily.org/hatari-devel Archives ]


Please see the attachment.

> Hi,
> 
> Yes, please.  I need to understand *why* it breaks things to fix it 
> properly.
> 
> 	- Eero
> 
> On 7.12.2022 23.55, Uwe Seimet wrote:
> > Hi,
> > 
> > The patch fixes the issue. Do you still need the full trace based on the
> > non-patched sources?
> > 
> > Best regards
> > 
> > Uwe
> > 
> >> Hi,
> >>
> >> On 7.12.2022 15.55, Uwe Seimet wrote:
> >>>> Are you sure this is (still) Hatari issue?
> >>>
> >>> Yes, I am sure because nothing else except Hatari would touch this file,
> >>> and . At
> >>> the beginning of the log these are the file permissions:
> >>>
> >>> -rw-rw-rw- 1 us users 4364 Dez  7 14:50 EDISON.RSM
> >>>
> >>> At the end of the log they are:
> >>>
> >>> -r--r--r-- 1 us users 4364 Dez  7 14:51 EDISON.RSM
> >>
> >> Ok, in that case I need more info, at least full "--trace gemdos" trace.
> >>
> >>
> >>> The commit causing this issue is 8fe983f2. Before this commit everything is
> >>> fine, as it always was.
> >>
> >> Does reverting just the GemDOS_ConvertAttribute() part (attached) of the
> >> commit, fix the issue?
> >>
> >>
> >> 	- Eero
> > 
> >> --- a/src/gemdos.c
> >> +++ b/src/gemdos.c
> >> @@ -273,7 +273,7 @@ static bool GemDOS_SetFileInformation(int Handle, DATETIME *DateTime)
> >>   /**
> >>    * Convert from FindFirstFile/FindNextFile attribute to GemDOS format
> >>    */
> >> -static uint8_t GemDOS_ConvertAttribute(mode_t mode)
> >> +static uint8_t GemDOS_ConvertAttribute(mode_t mode, const char *path)
> >>   {
> >>   	uint8_t Attrib = 0;
> >>   
> >> @@ -282,7 +282,7 @@ static uint8_t GemDOS_ConvertAttribute(mode_t mode)
> >>   		Attrib |= GEMDOS_FILE_ATTRIB_SUBDIRECTORY;
> >>   
> >>   	/* Read-only attribute */
> >> -	if (!(mode & S_IWUSR))
> >> +	if (!(mode & S_IWUSR) || !access(path, W_OK))
> >>   		Attrib |= GEMDOS_FILE_ATTRIB_READONLY;
> >>   
> >>   	/* TODO, Other attributes:
> >> @@ -326,7 +326,7 @@ static dta_ret_t PopulateDTA(char *path, struct dirent *file, DTA *pDTA, uint32_
> >>   		return DTA_ERR;   /* no DTA pointer set */
> >>   
> >>   	/* Check file attributes (check is done according to the Profibuch) */
> >> -	nFileAttr = GemDOS_ConvertAttribute(filestat.st_mode);
> >> +	nFileAttr = GemDOS_ConvertAttribute(filestat.st_mode, tempstr);
> >>   	nAttrMask = nAttrSFirst|GEMDOS_FILE_ATTRIB_WRITECLOSE|GEMDOS_FILE_ATTRIB_READONLY;
> >>   	if (nFileAttr != 0 && !(nAttrMask & nFileAttr))
> >>   		return DTA_SKIP;
> >> @@ -2616,7 +2615,7 @@ static bool GemDOS_Fattrib(uint32_t Params)
> >>   	if (nRwFlag == 0)
> >>   	{
> >>   		/* Read attributes */
> >> -		Regs[REG_D0] = GemDOS_ConvertAttribute(FileStat.st_mode);
> >> +		Regs[REG_D0] = GemDOS_ConvertAttribute(FileStat.st_mode, sActualFileName);
> >>   		return true;
> >>   	}
> >>   
> > 
> > 
> > 
> 
> 
GEMDOS 0x19 Dgetdrv() at PC 0x1365D26
GEMDOS 0x0E Dsetdrv(0x2) at PC=0x1365D18
GEMDOS 0x0E Dsetdrv(0x6) at PC=0x1365D18
GEMDOS 0x3B Dsetpath("\UTILITY") at PC 0x1365F1E
GEMDOS: \UTILITY -> host: /home/us/TT/G/UTILITY
GEMDOS 0x124 (Dpathconf) at PC 0x1365F72
GEMDOS 0x3B Dsetpath("\") at PC 0x1365F1E
GEMDOS: \ -> host: /home/us/TT/G
GEMDOS 0x19 Dgetdrv() at PC 0x1365D26
GEMDOS 0x0E Dsetdrv(0x6) at PC=0x1365D18
GEMDOS 0x0E Dsetdrv(0x2) at PC=0x1365D18
GEMDOS 0x3B Dsetpath("\THING") at PC 0x1365F1E
GEMDOS: \THING -> host: /home/us/TT/C/THING
GEMDOS 0x19 Dgetdrv() at PC 0x1365D26
GEMDOS 0x0E Dsetdrv(0x2) at PC=0x1365D18
GEMDOS 0x0E Dsetdrv(0x6) at PC=0x1365D18
GEMDOS 0x3B Dsetpath("\UTILITY") at PC 0x1365F1E
GEMDOS: \UTILITY -> host: /home/us/TT/G/UTILITY
GEMDOS 0x124 (Dpathconf) at PC 0x1365F72
GEMDOS 0x3B Dsetpath("\") at PC 0x1365F1E
GEMDOS: \ -> host: /home/us/TT/G
GEMDOS 0x19 Dgetdrv() at PC 0x1365D26
GEMDOS 0x0E Dsetdrv(0x6) at PC=0x1365D18
GEMDOS 0x0E Dsetdrv(0x2) at PC=0x1365D18
GEMDOS 0x3B Dsetpath("\THING") at PC 0x1365F1E
GEMDOS: \THING -> host: /home/us/TT/C/THING
GEMDOS 0x12C (Fxattr) at PC 0x1365FA6
GEMDOS 0x2F Fgetdta() at PC 0x1365CCE
GEMDOS 0x1A Fsetdta(0x1392A60) at PC 0x1365C98
GEMDOS 0x4E Fsfirst("G:\UTILITY\EDISON.PRG", 0x17) at PC 0x1365EB0
GEMDOS: G:\UTILITY\EDISON.PRG -> host: /home/us/TT/G/UTILITY/EDISON.PRG
GEMDOS 0x4F Fsnext() at PC 0x1365EB0
GEMDOS 0x1A Fsetdta(0x1375570) at PC 0x1365C98
GEMDOS 0x48 Malloc(0x2400) at PC 0x1365C74
GEMDOS 0x19 Dgetdrv() at PC 0x1365D26
GEMDOS 0x0E Dsetdrv(0x2) at PC=0x1365D18
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x1365D18
GEMDOS 0x3B Dsetpath("\HDDRIVER") at PC 0x1365F1E
GEMDOS: \HDDRIVER -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x20 Super(0x1) at PC 0x12E9464
GEMDOS 0x20 Super(0x0) at PC 0x12E9464
GEMDOS 0x20 Super(0x12761CC) at PC 0x12E9464
GEMDOS 0x49 Mfree(0x14005B6) at PC 0x1365C64
GEMDOS 0x49 Mfree(0x14037D6) at PC 0x1365C64
GEMDOS 0x49 Mfree(0x1406BF2) at PC 0x1365C64
GEMDOS 0x20 Super(0x1) at PC 0x12E9464
GEMDOS 0x20 Super(0x0) at PC 0x12E9464
GEMDOS 0x20 Super(0x12761CC) at PC 0x12E9464
GEMDOS 0x4B Pexec(0, "G:\UTILITY\EDISON.PRG", [0]"", 0x0) at PC 0x1365E8E
GEMDOS: G:\UTILITY\EDISON.PRG -> host: /home/us/TT/G/UTILITY/EDISON.PRG
GEMDOS 0x4B Pexec(7, 0x17, 0x14073ea, 0x0) at PC 0xFA003A
Basepage has been created - now loading 'G:\UTILITY\EDISON.PRG'
GEMDOS: G:\UTILITY\EDISON.PRG -> host: /home/us/TT/G/UTILITY/EDISON.PRG
GEMDOS 0x4A Mshrink(0x14094EE, 0x30428) at PC 0x140967E
GEMDOS 0x44 Mxalloc(0x370, 0x3) at PC 0x1039084
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x85CF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1BBA13E) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x14397a4, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439798, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439798, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x43 Fattrib("EDISON.INF", 0, 0x0) at PC 0x1422170
GEMDOS: EDISON.INF -> host: /home/us/TT/D/HDDRIVER/EDISON.INF
GEMDOS 0x3D Fopen("EDISON.INF", read-only) at PC=0x14221C8
GEMDOS: EDISON.INF -> host: /home/us/TT/D/HDDRIVER/EDISON.INF
-> FD 64 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x360) at PC 0x14220F8
GEMDOS 0x3F Fread(64, 4, 0x1439810) at PC 0x142206C
GEMDOS 0x3F Fread(64, 498, 0x142e278) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289a6) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289a7) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289a8) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289a9) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289b2) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289b3) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289b4) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289b5) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289be) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289bf) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289ca) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289cb) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289d6) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289d7) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289d8) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289d9) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289e2) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289e3) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289e4) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289e5) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x14289ee) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x1428a09) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1, 0x1428a24) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x142ec5a) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3F Fread(64, 30, 0x1439a00) at PC 0x142206C
GEMDOS 0x49 Mfree(0x1441EE6) at PC 0x14221E6
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x17D800) at PC 0x14220F8
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3F Fread(64, 26, 0x1441ee6) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3F Fread(64, 38, 0x1441f02) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3F Fread(64, 52, 0x1441f2a) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3F Fread(64, 53, 0x1441f60) at PC 0x142206C
GEMDOS 0x3F Fread(64, 2, 0x1439814) at PC 0x142206C
GEMDOS 0x3E Fclose(64) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x43 Fattrib("EDISON.FNT", 0, 0x0) at PC 0x1422170
GEMDOS didn't find filename /home/us/TT/D/HDDRIVER/EDISON.FNT
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439842, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439666, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439842, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439842, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x43 Fattrib("EDISON.JOB", 0, 0x0) at PC 0x1422170
GEMDOS: EDISON.JOB -> host: /home/us/TT/D/HDDRIVER/EDISON.JOB
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x318) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x143963e, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x3B Dsetpath("") at PC 0x1422106
GEMDOS 0x1A Fsetdta(0x14396C8) at PC 0x142207A
GEMDOS 0x4E Fsfirst("EDISON.JOB", 0x0) at PC 0x1422088
GEMDOS: EDISON.JOB -> host: /home/us/TT/D/HDDRIVER/EDISON.JOB
GEMDOS 0x4F Fsnext() at PC 0x1422088
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x3D Fopen("EDISON.JOB", read-only) at PC=0x14221C8
GEMDOS: EDISON.JOB -> host: /home/us/TT/D/HDDRIVER/EDISON.JOB
-> FD 64 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1A3F1AA) at PC 0x14220F8
GEMDOS 0x3F Fread(64, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3F Fread(64, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3E Fclose(64) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x15BF6E6) at PC 0x14221E6
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x43 Fattrib("EDISON.RSM", 0, 0x0) at PC 0x1422170
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
GEMDOS 0x3D Fopen("EDISON.RSM", read-only) at PC=0x14221C8
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
-> FD 64 (read-only -> read+write)
GEMDOS 0x3F Fread(64, 4, 0x14398b2) at PC 0x142206C
GEMDOS 0x3F Fread(64, 144, 0x143176e) at PC 0x142206C
GEMDOS 0x43 Fattrib("D:\HDDRIVER\HDDRIVER.S", 0, 0x0) at PC 0x1422170
GEMDOS: D:\HDDRIVER\HDDRIVER.S -> host: /home/us/TT/D/HDDRIVER/HDDRIVER.S
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x2D0) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439620, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x1A Fsetdta(0x14396AA) at PC 0x142207A
GEMDOS 0x4E Fsfirst("HDDRIVER.S", 0x0) at PC 0x1422088
GEMDOS: HDDRIVER.S -> host: /home/us/TT/D/HDDRIVER/HDDRIVER.S
GEMDOS 0x4F Fsnext() at PC 0x1422088
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x3D Fopen("D:\HDDRIVER\HDDRIVER.S", read-only) at PC=0x14221C8
GEMDOS: D:\HDDRIVER\HDDRIVER.S -> host: /home/us/TT/D/HDDRIVER/HDDRIVER.S
-> FD 65 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1A3F1AA) at PC 0x14220F8
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3E Fclose(65) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x15BF6E6) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 196, 0x14318b8) at PC 0x142206C
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 144, 0x1431d66) at PC 0x142206C
GEMDOS 0x43 Fattrib("D:\HDDRIVER\SCSI.S", 0, 0x0) at PC 0x1422170
GEMDOS: D:\HDDRIVER\SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x2D0) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439620, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x1A Fsetdta(0x14396AA) at PC 0x142207A
GEMDOS 0x4E Fsfirst("SCSI.S", 0x0) at PC 0x1422088
GEMDOS: SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
GEMDOS 0x4F Fsnext() at PC 0x1422088
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x3D Fopen("D:\HDDRIVER\SCSI.S", read-only) at PC=0x14221C8
GEMDOS: D:\HDDRIVER\SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
-> FD 65 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1A3F1AA) at PC 0x14220F8
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3E Fclose(65) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x15BF6E6) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 196, 0x1431eb0) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1000, 0x1431f74) at PC 0x142206C
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 144, 0x143235e) at PC 0x142206C
GEMDOS 0x43 Fattrib("D:\HDDRIVER\SCSILIB.S", 0, 0x0) at PC 0x1422170
GEMDOS: D:\HDDRIVER\SCSILIB.S -> host: /home/us/TT/D/HDDRIVER/SCSILIB.S
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x2D0) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439620, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x1A Fsetdta(0x14396AA) at PC 0x142207A
GEMDOS 0x4E Fsfirst("SCSILIB.S", 0x0) at PC 0x1422088
GEMDOS: SCSILIB.S -> host: /home/us/TT/D/HDDRIVER/SCSILIB.S
GEMDOS 0x4F Fsnext() at PC 0x1422088
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x3D Fopen("D:\HDDRIVER\SCSILIB.S", read-only) at PC=0x14221C8
GEMDOS: D:\HDDRIVER\SCSILIB.S -> host: /home/us/TT/D/HDDRIVER/SCSILIB.S
-> FD 65 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1A3F1AA) at PC 0x14220F8
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3E Fclose(65) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x15BF6E6) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 196, 0x14324a8) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1000, 0x143256c) at PC 0x142206C
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 144, 0x1432956) at PC 0x142206C
GEMDOS 0x43 Fattrib("D:\HDDRIVER\IDE.S", 0, 0x0) at PC 0x1422170
GEMDOS: D:\HDDRIVER\IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x2D0) at PC 0x14220F8
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439620, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x1A Fsetdta(0x14396AA) at PC 0x142207A
GEMDOS 0x4E Fsfirst("IDE.S", 0x0) at PC 0x1422088
GEMDOS: IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
GEMDOS 0x4F Fsnext() at PC 0x1422088
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x3D Fopen("D:\HDDRIVER\IDE.S", read-only) at PC=0x14221C8
GEMDOS: D:\HDDRIVER\IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
-> FD 65 (read-only -> read+write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x1A3F1AA) at PC 0x14220F8
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3F Fread(65, 27521448, 0x15bf6e6) at PC 0x142206C
GEMDOS 0x3E Fclose(65) at PC 0x14220D4
GEMDOS 0x49 Mfree(0x15BF6E6) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 196, 0x1432aa0) at PC 0x142206C
GEMDOS 0x3F Fread(64, 1000, 0x1432b64) at PC 0x142206C
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x3F Fread(64, 144, 0x1432f4e) at PC 0x142206C
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x1439648, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x3F Fread(64, 196, 0x1433098) at PC 0x142206C
GEMDOS 0x3E Fclose(64) at PC 0x14220D4
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x143908e, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x43 Fattrib("EDISON.RSM", 0, 0x0) at PC 0x1422170
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
GEMDOS 0x3C Fcreate("EDISON.RSM", 0x0) at PC 0x14221BA
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
-> FD 64 (read/write)
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x318) at PC 0x14220F8
GEMDOS 0x40 Fwrite(64, 4, 0x14390e4) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 144, 0x143176e) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 196, 0x14318b8) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 144, 0x1431d66) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 196, 0x1431eb0) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 1000, 0x1431f74) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 144, 0x143235e) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 196, 0x14324a8) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 1000, 0x143256c) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 144, 0x1432956) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 196, 0x1432aa0) at PC 0x142215E
GEMDOS 0x40 Fwrite(64, 1000, 0x1432b64) at PC 0x142215E
GEMDOS 0x3E Fclose(64) at PC 0x14220D4
GEMDOS 0x43 Fattrib("EDISON.RSM", 1, 0x21) at PC 0x1422170
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
GEMDOS 0x49 Mfree(0x140036A) at PC 0x14221E6
GEMDOS 0x49 Mfree(0x13FFFFA) at PC 0x10390CA
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x44 Mxalloc(0x370, 0x3) at PC 0x1039084
GEMDOS 0x49 Mfree(0x13FFFFA) at PC 0x10390CA
GEMDOS 0x4B Pexec(0, "G:\UTILITY\ER68Z264.TOS", [72]"-Q:ASSEM.ERR SCSILIB.S -OBJ2 -0: OPT B+,P+,S+,Q+,A+,J+,M+,L+,T+,Z+,K+,V+", 0x1071164) at PC 0x14221FA
GEMDOS: G:\UTILITY\ER68Z264.TOS -> host: /home/us/TT/G/UTILITY/ER68Z264.TOS
GEMDOS 0x4B Pexec(7, 0x7, 0x143907e, 0x1071164) at PC 0xFA003A
Basepage has been created - now loading 'G:\UTILITY\ER68Z264.TOS'
GEMDOS: G:\UTILITY\ER68Z264.TOS -> host: /home/us/TT/G/UTILITY/ER68Z264.TOS
GEMDOS 0x4A Mshrink(0x15BF6E6, 0x19ADC) at PC 0x15C3928
GEMDOS 0x19 Dgetdrv() at PC 0x15C393C
GEMDOS 0x47 Dgetpath(0x15d6ff4, 4) at PC 0x15C3950
-> '\HDDRIVER'
GEMDOS 0x1A Fsetdta(0x15BF766) at PC 0x15C39CE
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x15C3AA0
GEMDOS 0x48 Malloc(0x1A256CE) at PC 0x15C3AB8
GEMDOS 0x2F Fgetdta() at PC 0x15C48B8
GEMDOS 0x4E Fsfirst("ER68_ASS.FKT", 0x0) at PC 0x15C41CE
GEMDOS didn't find filename /home/us/TT/D/HDDRIVER/ER68_ASS.FKT
GEMDOS 0x4E Fsfirst("C:\ER68_ASS.FKT", 0x0) at PC 0x15C41CE
GEMDOS didn't find filename /home/us/TT/C/ER68_ASS.FKT
GEMDOS 0x3D Fopen("SCSILIB.S", read-only) at PC=0x15C4734
GEMDOS: SCSILIB.S -> host: /home/us/TT/D/HDDRIVER/SCSILIB.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 12986, 0x2ffa5c4) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("E:\SYSTEM.ASM", read-only) at PC=0x15C4734
GEMDOS: E:\SYSTEM.ASM -> host: /home/us/TT/E/SYSTEM.ASM
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 14304, 0x2ff6d4c) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("SCSI.S", read-only) at PC=0x15C4734
GEMDOS: SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 23045, 0x2ff12e4) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("ACSI.S", read-only) at PC=0x15C4734
GEMDOS: ACSI.S -> host: /home/us/TT/D/HDDRIVER/ACSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 7689, 0x2fef478) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("IDE.S", read-only) at PC=0x15C4734
GEMDOS: IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 28847, 0x2fe8364) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("BLITTER.S", read-only) at PC=0x15C4734
GEMDOS: BLITTER.S -> host: /home/us/TT/D/HDDRIVER/BLITTER.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 1299, 0x2fe7de8) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("E:\SYSTEM.ASM", read-only) at PC=0x15C4734
GEMDOS: E:\SYSTEM.ASM -> host: /home/us/TT/E/SYSTEM.ASM
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 14304, 0x2ff6d4c) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("SCSI.S", read-only) at PC=0x15C4734
GEMDOS: SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 23045, 0x2ff12e4) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("ACSI.S", read-only) at PC=0x15C4734
GEMDOS: ACSI.S -> host: /home/us/TT/D/HDDRIVER/ACSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 7689, 0x2fef478) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("IDE.S", read-only) at PC=0x15C4734
GEMDOS: IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 28847, 0x2fe8364) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("BLITTER.S", read-only) at PC=0x15C4734
GEMDOS: BLITTER.S -> host: /home/us/TT/D/HDDRIVER/BLITTER.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 1299, 0x2fe7de8) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("E:\SYSTEM.ASM", read-only) at PC=0x15C4734
GEMDOS: E:\SYSTEM.ASM -> host: /home/us/TT/E/SYSTEM.ASM
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 14304, 0x2ff6d4c) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("SCSI.S", read-only) at PC=0x15C4734
GEMDOS: SCSI.S -> host: /home/us/TT/D/HDDRIVER/SCSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 23045, 0x2ff12e4) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("ACSI.S", read-only) at PC=0x15C4734
GEMDOS: ACSI.S -> host: /home/us/TT/D/HDDRIVER/ACSI.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 7689, 0x2fef478) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("IDE.S", read-only) at PC=0x15C4734
GEMDOS: IDE.S -> host: /home/us/TT/D/HDDRIVER/IDE.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 28847, 0x2fe8364) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("BLITTER.S", read-only) at PC=0x15C4734
GEMDOS: BLITTER.S -> host: /home/us/TT/D/HDDRIVER/BLITTER.S
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 1299, 0x2fe7de8) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3C Fcreate("SCSILIB.O", 0x0) at PC 0x15C3870
GEMDOS: SCSILIB.O -> host: /home/us/TT/D/HDDRIVER/SCSILIB.O
-> FD 64 (read/write)
GEMDOS 0x40 Fwrite(64, 14984, 0x15e411c) at PC 0x15C3882
GEMDOS 0x3E Fclose(64) at PC 0x15C388A
GEMDOS 0x3C Fcreate("ASSEM.ERR", 0x0) at PC 0x15BF90C
GEMDOS: ASSEM.ERR -> host: /home/us/TT/D/HDDRIVER/ASSEM.ERR
-> FD 64 (read/write)
GEMDOS 0x40 Fwrite(64, 293, 0x15d6a6a) at PC 0x15D20A8
GEMDOS 0x49 Mfree(0x15D91C2) at PC 0x15C3D80
GEMDOS 0x3E Fclose(64) at PC 0x15BF942
GEMDOS 0x4C Pterm(0) at PC 0x15C3E0C
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x4B Pexec(0, "G:\UTILITY\ER68Z264.TOS", [41]"-Q:ASSEM.ERR SCSILIB.LIB SCSILIB.O -LIBSI", 0x1071164) at PC 0x14221FA
GEMDOS: G:\UTILITY\ER68Z264.TOS -> host: /home/us/TT/G/UTILITY/ER68Z264.TOS
GEMDOS 0x4B Pexec(7, 0x7, 0x143907e, 0x1071164) at PC 0xFA003A
Basepage has been created - now loading 'G:\UTILITY\ER68Z264.TOS'
GEMDOS: G:\UTILITY\ER68Z264.TOS -> host: /home/us/TT/G/UTILITY/ER68Z264.TOS
GEMDOS 0x4A Mshrink(0x15BF6E6, 0x19ADC) at PC 0x15C3928
GEMDOS 0x19 Dgetdrv() at PC 0x15C393C
GEMDOS 0x47 Dgetpath(0x15d6ff4, 4) at PC 0x15C3950
-> '\HDDRIVER'
GEMDOS 0x1A Fsetdta(0x15BF766) at PC 0x15C39CE
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x15C3AA0
GEMDOS 0x48 Malloc(0x1A256CE) at PC 0x15C3AB8
GEMDOS 0x2F Fgetdta() at PC 0x15C48B8
GEMDOS 0x4E Fsfirst("ER68_ASS.FKT", 0x0) at PC 0x15C41CE
GEMDOS didn't find filename /home/us/TT/D/HDDRIVER/ER68_ASS.FKT
GEMDOS 0x4E Fsfirst("C:\ER68_ASS.FKT", 0x0) at PC 0x15C41CE
GEMDOS didn't find filename /home/us/TT/C/ER68_ASS.FKT
GEMDOS 0x3D Fopen("SCSILIB.LIB", read-only) at PC=0x15C4734
GEMDOS: SCSILIB.LIB -> host: /home/us/TT/D/HDDRIVER/SCSILIB.LIB
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 15124, 0x2ff9d68) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3D Fopen("SCSILIB.O", read-only) at PC=0x15C4734
GEMDOS: SCSILIB.O -> host: /home/us/TT/D/HDDRIVER/SCSILIB.O
-> FD 64 (read-only -> read+write)
GEMDOS 0x42 Fseek(0, 64, 2) at PC 0x15C4792
GEMDOS 0x42 Fseek(0, 64, 0) at PC 0x15C47A8
GEMDOS 0x3F Fread(64, 14984, 0x2ff62d4) at PC 0x15C4804
GEMDOS 0x3E Fclose(64) at PC 0x15C4852
GEMDOS 0x3C Fcreate("SCSILIB.LIB", 0x0) at PC 0x15C3870
GEMDOS: SCSILIB.LIB -> host: /home/us/TT/D/HDDRIVER/SCSILIB.LIB
-> FD 64 (read/write)
GEMDOS 0x40 Fwrite(64, 15124, 0x2ff9d68) at PC 0x15C3882
GEMDOS 0x3E Fclose(64) at PC 0x15C388A
GEMDOS 0x49 Mfree(0x15D91C2) at PC 0x15C3D80
GEMDOS 0x4C Pterm(0) at PC 0x15C3E0C
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x44 Mxalloc(0x370, 0x3) at PC 0x1039084
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x19 Dgetdrv() at PC 0x142209C
GEMDOS 0x47 Dgetpath(0x143908e, 0) at PC 0x14221AC
-> '\HDDRIVER'
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x0E Dsetdrv(0x3) at PC=0x14220C8
GEMDOS 0x3B Dsetpath("D:\HDDRIVER\") at PC 0x1422106
GEMDOS: D:\HDDRIVER\ -> host: /home/us/TT/D/HDDRIVER
GEMDOS 0x43 Fattrib("EDISON.RSM", 0, 0x0) at PC 0x1422170
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
GEMDOS 0x3C Fcreate("EDISON.RSM", 0x0) at PC 0x14221BA
GEMDOS: EDISON.RSM -> host: /home/us/TT/D/HDDRIVER/EDISON.RSM
-> ERROR (errno = 13)
WARN : GEMDOS failed to create/truncate '/home/us/TT/D/HDDRIVER/EDISON.RSM'
GEMDOS 0x48 Malloc(0xFFFFFFFF) at PC 0x14220F8
GEMDOS 0x48 Malloc(0x17B8) at PC 0x14220F8


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/