mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-03 08:08:39 -04:00
thermosphere: add hypercall support... even if unused
This commit is contained in:
parent
b5c6b06dad
commit
bcc72896fd
5 changed files with 68 additions and 4 deletions
thermosphere/src
|
@ -105,3 +105,7 @@ static inline u32 get_spsr(void) {
|
|||
static inline bool check_32bit_additive_overflow(u32 a, u32 b) {
|
||||
return __builtin_add_overflow_p(a, b, (u32)0);
|
||||
}
|
||||
|
||||
static inline void panic(void) {
|
||||
for (;;);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue