MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / ProDOS_Put16

Function ProDOS_Put16

source/ProDOS_FileSystem.h:200–204  ·  view source on GitHub ↗

------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

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 )

Callers 3

ProDOS_SetVolumeHeaderFunction · 0.85
ProDOS_PutFileHeaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected