From a61b553c34618898014ab7e423afb7d670633932 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Fri, 24 Jul 2020 17:10:35 -0700 Subject: [PATCH] svc: add BreakReason flags --- libvapours/include/vapours/svc/svc_types_common.hpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libvapours/include/vapours/svc/svc_types_common.hpp b/libvapours/include/vapours/svc/svc_types_common.hpp index 70e3bf78..efb26438 100644 --- a/libvapours/include/vapours/svc/svc_types_common.hpp +++ b/libvapours/include/vapours/svc/svc_types_common.hpp @@ -432,7 +432,16 @@ namespace ams::svc { }; enum BreakReason : u32 { - /* TODO */ + BreakReason_Panic = 0, + BreakReason_Assert = 1, + BreakReason_User = 2, + BreakReason_PreLoadDll = 3, + BreakReason_PostLoadDll = 4, + BreakReason_PreUnloadDll = 5, + BreakReason_PostUnloadDll = 6, + BreakReason_CppException = 7, + + BreakReason_NotificationOnlyFlag = 0x80000000, }; enum KernelDebugType : u32 {