mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
14 lines
189 B
C
14 lines
189 B
C
#ifndef JSYSTEM_JSUPPORT_H
|
|
#define JSYSTEM_JSUPPORT_H
|
|
|
|
#include "types.h"
|
|
|
|
inline u8 JSULoByte(u16 in) {
|
|
return in & 0xff;
|
|
}
|
|
inline u8 JSUHiByte(u16 in) {
|
|
return in >> 8;
|
|
}
|
|
|
|
#endif
|