------------------------------------------------------------------------
| 198 | |
| 199 | // ------------------------------------------------------------------------ |
| 200 | inline void ProDOS_Put16 ( uint8_t *pDiskBytes, int offset, int val ) |
| 201 | { |
| 202 | pDiskBytes[ offset + 0 ] = (val >> 0) & 0xFF; |
| 203 | pDiskBytes[ offset + 1 ] = (val >> 8) & 0xFF; |
| 204 | } |
| 205 | |
| 206 | // ------------------------------------------------------------------------ |
| 207 | inline void ProDOS_Put24 ( uint8_t *pDiskBytes, int offset, int val ) |
no outgoing calls
no test coverage detected