Jump to content
IGNORED

cc65 Atari 8 disk access?


Recommended Posts

Well, you could use the usual C suspects such as fopen, fread, fscanf, etc.. Or you could go down 1 layer to the CIO routines, which involves filling out a memory structure and calling a few OS routines. See De Re Atari and/or Mapping the Atari for more info.

 

https://www.atariarchives.org/dere/chapt08.php#H8_6

https://www.atariarchives.org/mapping/memorymap.php

Edited by danwinslow
Link to comment
Share on other sites

small example of cc65 code, just checks a file exists :-

 

 

    // gets input filename and checks if it exists
int getinfile(void)
{
    int done=0;
    char ret;
    FILE *finput;
    char infile[30];
    gets(infile); // dummy to clear buffer of CR
    do
    {
        clearline(0,12);
        clearline(0,10);
        printf("Enter Input Filename (RETURN to Abort)");
        clearline(0,11);

        gets(infile);

        if((strlen(infile)) == 0) // CR so abort
            return(1);
        ret = checkfile();        
        if(strlen(infile) > 30)
        {
            clearline(0,12);
            printf("Filename too long %s",infile);
            delay(90);
        }
        else
        {
            finput=fopen(infile,"r"); // check if file exists
            if(finput == NULL)
            {
                clearline(0,12);
                printf("File does not exist");
                delay(90);
            }
            else
            {
                fclose(finput);
                done=1;
            }
        }
    }while(!done);
    return(0);
}

Link to comment
Share on other sites

If your using Spartados X there's a section on file attributes using the ATR command, reading the attributes doesn't seem

to be covered (at least I can't see it).

 

It will also depend on what DOS your using, in Atari DOS's I think you can only lock a file and the way to see that

is open the disk directory and look for a "*" in the filename.

 

Here's a quick BASIC program that opens the directory and displays the contents

 

1 TRAP 100
10 OPEN #1,2,0,"D:*.*"
20 GET #1,A
30 ? CHR$(A);
40 GOTO 20
100 CLOSE #1

READY
RUN
* DOS     SYS 037
* DUP     SYS 042
CENT2021M65 009
CENT2021ASM 016
CENT2021OBJ 002
TESTBOOTOBJ 018
CENTNEW M65 016
CENTNEW OBJ 004
CENTNEW ASM 031
* TEMP00  ASM 007
532 FREE SECTORS

READY

Link to comment
Share on other sites

I think the only way is to use direct CIO calls as @danwinslow  said, you would need to set the AUX1 byte to 2, in the OPEN then

read a character at a time to retrieve the directory listing .

 

Probably easier to do it as an assembler procedure within cc65

Edited by TGB1718
Link to comment
Share on other sites

13 hours ago, danwinslow said:

Well, you could use the usual C suspects such as fopen, fread, fscanf, etc.. Or you could go down 1 layer to the CIO routines, which involves filling out a memory structure and calling a few OS routines. See De Re Atari and/or Mapping the Atari for more info.

 

https://www.atariarchives.org/dere/chapt08.php#H8_6

https://www.atariarchives.org/mapping/memorymap.php

In CC65 there is one more intermediate layer between C functions (like fopen, fread etc) and OS routines:

#include <fcntl.h>

with functions such as open, read, write etc. - they are smaller variants of the fXXX functions. 

Link to comment
Share on other sites

17 hours ago, Harry Potter said:

I thank you for your information.  All I really need that can't be accessed via the ANSI C functions is the file attributes.  I don't know how to access the attributes of an Atari 8 file.

What attributes are you talking about?

Link to comment
Share on other sites

I think he means things like size, date, etc. He might also mean permissions, but  of course most 8bits are anarchy in that department. It's an interestig question though - do any 8bits have anything like file ownership and individual r/w permissions?

 

Going OT because I can and the OP has already said he has quite enough info/

5 hours ago, ilmenit said:

In CC65 there is one more intermediate layer between C functions (like fopen, fread etc) and OS routines:

#include <fcntl.h>

with functions such as open, read, write etc. - they are smaller variants of the fXXX functions. 

 

Yep, true, and that's  actually part of the base C library on any box, which is why I lumped it all in together.

Link to comment
Share on other sites

Did a bit of checking, I think the answer is that cc65 does not support retrieving file attributes, in C you can use the stat() function.

Although cc65 has the header file sys/stat.h it is all but empty, it should at the very least have this:-

struct stat {
    dev_t     st_dev;     /* ID of device containing file */
    ino_t     st_ino;     /* inode number */
    mode_t    st_mode;    /* protection */
    nlink_t   st_nlink;   /* number of hard links */
    uid_t     st_uid;     /* user ID of owner */
    gid_t     st_gid;     /* group ID of owner */
    dev_t     st_rdev;    /* device ID (if special file) */
    off_t     st_size;    /* total size, in bytes */
    blksize_t st_blksize; /* blocksize for file system I/O */
    blkcnt_t  st_blocks;  /* number of 512B blocks allocated */
    time_t    st_atime;   /* time of last access */
    time_t    st_mtime;   /* time of last modification */
    time_t    st_ctime;   /* time of last status change */
};

So a simple piece of code to use it could be:-

int main ( int argc, char *argv[])
{
    struct stat MyStat;

    if(argc <= 1)
    {
        printf("Usage:= mystat <filename>\n");
        exit(1);
    }

    if (stat(argv[(argc - 1)], &MyStat) < 0)
        printf("Error = %s\n", strerror(errno));
    else
        printf( "File Permissions:= %d\n", MyStat.st_mode );

    return 0;
}
 

Link to comment
Share on other sites

I think you would have to write something yourself to deal with those as they have different attributes, Sparta has the most features

I think, but as I said before, I know how to set attributes, but not found a way to see them, AtariDOS, it's the "*" in the filename for

a locked file, so fairly easy to detect that, I've not used MyDos, but you may find some info here :- http://www.mathyvannisselroy.nl/mydos.htm

Link to comment
Share on other sites

Have a look at SpartadosX Copy command, it does allow for some attributes to be preserved

 

These switches are available:

/B - backup mode
/C - confirmation mode
/D - do not preserve date and time
/I - ask before overwriting a file
/K - copy and set attribute '+A' to the original file
/M - delete the source file (move)
/N - skip existing destination entries
/Q - do not print anything (except error messages)
/R - dig recursively into subdirectories
/S - switch off display during copy
/V - summary (number of files and directories copied)

  • Like 1
Link to comment
Share on other sites

@Harry Potter What are the use-cases in the library/wrapper you are building for these - on the A8 platform they aren't too much use, with the exception of SpartaDos where, say you wanted to make a Make tool, then timestamps would be useful. But in stock Atari DOS you've typically only got a 'deleted' or 'locked' flag to go with, no timestamp.

Edited by Wrathchild
Link to comment
Share on other sites

Hmmm,

 

file status? Something like:

 

normal file

file locked

file deleted

file not closed

<filename.ext> file occupies sectors beyond 720

  (Atari DOS 2.5 and compatibles in 130k format)

file beyond sector 720 and locked

file beyond sector 720 and deleted

file beyond sector 720 and not closed

file uses both sides of a disk (e.g. on a 360k disk)

not a file, just a DIR comment (usually with a length of 000 sectors)

sub-directory (MyDOS, SpartaDOS, etc.)

...

 

Maybe a XIO 13 (status request) can help here ?

 

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...