------------------------------------------------------------------------
| 187 | |
| 188 | // ------------------------------------------------------------------------ |
| 189 | inline uint32_t ProDOS_Get24 ( uint8_t *pDiskBytes, int offset ) |
| 190 | { |
| 191 | uint32_t n = 0 |
| 192 | | (((uint32_t)pDiskBytes[ offset + 0 ]) << 0) |
| 193 | | (((uint32_t)pDiskBytes[ offset + 1 ]) << 8) |
| 194 | | (((uint32_t)pDiskBytes[ offset + 2 ]) << 16) |
| 195 | ; |
| 196 | return n; |
| 197 | } |
| 198 | |
| 199 | // ------------------------------------------------------------------------ |
| 200 | inline void ProDOS_Put16 ( uint8_t *pDiskBytes, int offset, int val ) |
no outgoing calls
no test coverage detected