Changeset 259 for soft/giet_vm/giet_libs


Ignore:
Timestamp:
Dec 5, 2013, 12:45:34 PM (11 years ago)
Author:
devigne
Message:

giet_fat32/fat32.c :
Added _fat_write function. At the moment it does not support the creation of a
new file (the writing must exist in the disk image) and does not support the
allocation of additional cluster from the original file.

create_dmg :
Bug fix for support Linux (The tree files were not consistent with the
pathnames in boot.c).

giet_libs/stdlib.c and stdlib.h :
Added stdlib file. At the moment they only contain the atoi function.

giet_libs/stdio.h :
Bug fix in SYSCALL DEFINE. SYSCALL_FAT_READ, WRITE, CLOSE, LSEEK had the same
value.

Makefile :
Added compilation line for stdlib.o

Location:
soft/giet_vm/giet_libs
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_libs/stdio.h

    r258 r259  
    4848#define SYSCALL_FAT_OPEN          0x20
    4949#define SYSCALL_FAT_READ          0x21
    50 #define SYSCALL_FAT_WRITE         0x21
    51 #define SYSCALL_FAT_LSEEK         0x21
    52 #define SYSCALL_FAT_CLOSE         0x21
     50#define SYSCALL_FAT_WRITE         0x22
     51#define SYSCALL_FAT_LSEEK         0x23
     52#define SYSCALL_FAT_CLOSE         0x24
    5353
    5454//////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.