mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
80ef14e480
* match and link JKRAram.cpp * match and link JKRExpHeap * match and link JKRAramStream.cpp * match and link JKRFileLoader.cpp * match and link JKRFileFinder.cpp * JKernel Dump * match and link JKRAramArchive.cpp * match and link JKRDvdArchive.cpp * match and link JKRCompArchive.cpp * match but not link JKRDvdAramRipper * small refactors * match and link JKRThread.cpp * fix and link JKRDvdAramStream.cpp * Formatting fixes --------- Co-authored-by: SwareJonge <olaf23okken@gmail.com>
9 lines
180 B
C
9 lines
180 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 |