prime/include/Kyoto/Basics/RAssertDolphin.hpp
Henrique Gemignani Passos Lima 8f3807da18 Start RAssertDolphin (#3)
* Start RAssertDolphin

* Add OSContext

* Add missing files, Prime2's ErrorHandler

* Progress in ErrorHandler

* comments

* Don't link new code

* Format code

* Slight adjustments

* Use u16 for OSError

Former-commit-id: 7e8bc34cabd90ab0d70439dfe708b90bdb0aed0a
2022-09-29 19:09:11 -04:00

13 lines
248 B
C++

#ifndef _RASSERTDOLPHIN_HPP
#define _RASSERTDOLPHIN_HPP
#include "types.h"
#include "dolphin/os.h"
void rs_debugger_printf(const char* format, ...);
void ErrorHandler(OSError code, OSContext* context, int, int);
void SetErrorHandlers();
#endif