MCPcopy Create free account
hub / github.com/doldecomp/mkdd / JSULoByte

Function JSULoByte

include/JSystem/JSupport.h:33–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33inline u8 JSULoByte(u16 in) { return in & 0xff; } // gets the lower 8 bits of a 16bit input
34inline u8 JSUHiByte(u16 in) { return in >> 8; } // gets the higher 8 bits of a 16bit input
35inline u8 JSULoNibble(u8 in) { return in & 0x0f; } // gets the lower 4 bits of an 8bit input
36inline u8 JSUHiNibble(u8 in) { return in >> 4; } // gets the higher 4 bits of an 8bit input

Callers 6

playMethod · 0.85
playForceMethod · 0.85
writeRegMethod · 0.85
cmdBankPrgMethod · 0.85
checkMethod · 0.85
convertSjisMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected