Changeset 289 for soft/giet_vm/giet_fat32/fat32.c
- Timestamp:
- Feb 4, 2014, 2:16:37 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_fat32/fat32.c
r273 r289 871 871 if( fat.initialised != FAT_INITIALISED ) 872 872 { 873 _fat_init( mode ); 873 if ( _fat_init( mode ) ) 874 { 875 _puts("[FAT ERROR] Cannot initialize FAT descriptor fom Boot Sector\n"); 876 _exit(); 877 } 878 879 #if GIET_DEBUG_FAT 880 _tty_get_lock( 0 ); 881 _puts("\n[FAT DEBUG] FAT initialisation completed at cycle "); 882 _putd(_get_proctime()); 883 _puts("\n"); 884 _fat_print(); 885 _tty_release_lock( 0 ); 886 #endif 874 887 } 875 888
Note: See TracChangeset
for help on using the changeset viewer.