MCPcopy Create free account
hub / github.com/Stewmath/GameYob / WRITE_32

Function WRITE_32

arm9/source/gbprinter.cpp:227–232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227inline void WRITE_32(u8* ptr, u32 x) {
228 *ptr = x&0xff;
229 *(ptr+1) = (x>>8)&0xff;
230 *(ptr+2) = (x>>16)&0xff;
231 *(ptr+3) = (x>>24)&0xff;
232}
233
234u8 bmpHeader[] = { // Contains header data & palettes
2350x42, 0x4d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x28, 0x00,

Callers 1

printerSaveFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected