Add svcBreakRO

This commit is contained in:
TuxSH 2016-12-23 15:18:17 +01:00
parent fbdcf91c8b
commit 84db84c05f

View File

@ -977,6 +977,14 @@ Result svcKernelSetState(u32 type, ...);
*/
void svcBreak(UserBreakType breakReason);
/**
* @brief Breaks execution (LOAD_RO and UNLOAD_RO).
* @param breakReason Debug reason for breaking.
* @param croInfo Library information.
* @param croInfoSize Size of the above structure.
*/
void svcBreakRO(UserBreakType breakReason, const void* croInfo, u32 croInfoSize) __asm__("svcBreak");
/**
* @brief Outputs a debug string.
* @param str String to output.