mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 23:05:36 -04:00
8fd9f2ab5d
* start JSystem * JKRAram and JUTGamePad * started heap and thread * more JKernel * mostly finished JKernel * delete unused asm * JKRFileFinder * delete unused asm and match findNextFile * format * fix mtx_vec
17 lines
445 B
C
17 lines
445 B
C
#ifndef JUTASSERT_H
|
|
#define JUTASSERT_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
// TODO: make it a namespace
|
|
struct JUTAssertion {
|
|
/* 802E495C */ static void create();
|
|
/* 802E4960 */ static void flush_subroutine();
|
|
/* 802E499C */ static void flushMessage();
|
|
/* 802E4A54 */ static void flushMessage_dbPrint();
|
|
/* 802E4C34 */ static void setVisible(bool);
|
|
/* 802E4C3C */ static void setMessageCount(int);
|
|
};
|
|
|
|
#endif /* JUTASSERT_H */
|