fixed value for VLIR record table (points TO the last byte in the sector, not the next one)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1930 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -96,7 +96,7 @@ int blocks,rest;
|
|||||||
if (bytes==0)
|
if (bytes==0)
|
||||||
AbEnd("couldn't read %s:%s\n",argv[i],strerror(errno));
|
AbEnd("couldn't read %s:%s\n",argv[i],strerror(errno));
|
||||||
blocks = bytes / 254;
|
blocks = bytes / 254;
|
||||||
rest = bytes % 254 + 2;
|
rest = bytes % 254 + 1;
|
||||||
if (rest>255) rest=255;
|
if (rest>255) rest=255;
|
||||||
vlirtabt[j]=blocks+1; vlirtabs[j]=rest;
|
vlirtabt[j]=blocks+1; vlirtabs[j]=rest;
|
||||||
fwrite(buffer,1,(blocks+1)*254,outCVT);
|
fwrite(buffer,1,(blocks+1)*254,outCVT);
|
||||||
|
|||||||
Reference in New Issue
Block a user