------------------------------------------------------------------------
| 205 | |
| 206 | // ------------------------------------------------------------------------ |
| 207 | inline void ProDOS_Put24 ( uint8_t *pDiskBytes, int offset, int val ) |
| 208 | { |
| 209 | pDiskBytes[ offset + 0 ] = (val >> 0) & 0xFF; |
| 210 | pDiskBytes[ offset + 1 ] = (val >> 8) & 0xFF; |
| 211 | pDiskBytes[ offset + 2 ] = (val >>16) & 0xFF; |
| 212 | } |
| 213 | |
| 214 | // --- ProDOS Block Functions --- |
| 215 |
no outgoing calls
no test coverage detected