Changeset 8973acd in buchla-68k for libcio/clusmap.c
- Timestamp:
- 07/15/2017 03:12:10 PM (7 years ago)
- Branches:
- master
- Children:
- ea232f9
- Parents:
- 7d0d347
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/clusmap.c
r7d0d347 r8973acd 75 75 76 76 nc = 0; 77 clus = micons(fcp->de.bclust);77 clus = (int16_t)micon16(fcp->de.bclust); 78 78 79 79 if (clus) { … … 173 173 printf(" modefl 0x%04x\n", fcp->modefl); 174 174 175 printf(" crtime 0x%04x", micon s(fcp->de.crtime));176 printf(" crdate 0x%04x\n", micon s(fcp->de.crdate));175 printf(" crtime 0x%04x", micon16(fcp->de.crtime)); 176 printf(" crdate 0x%04x\n", micon16(fcp->de.crdate)); 177 177 178 178 printf(" asects %8ld", fcp->asects); 179 printf(" flen %8ld", micon l(fcp->de.flen));179 printf(" flen %8ld", micon32(fcp->de.flen)); 180 180 printf(" curlen %8ld\n", fcp->curlen); 181 181 182 printf(" bclust %8d", micon s(fcp->de.bclust));182 printf(" bclust %8d", micon16(fcp->de.bclust)); 183 183 printf(" curcls %8d", fcp->curcls); 184 184 printf(" clsec %8d\n", fcp->clsec); … … 198 198 */ 199 199 200 void MapFAT( int8_t *fat, int16_t ncl, int16_t stops)200 void MapFAT(uint8_t *fat, int16_t ncl, int16_t stops) 201 201 { 202 202 register int16_t i;
Note:
See TracChangeset
for help on using the changeset viewer.