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