Atmosphere/exosphere/src/warmboot_main.c

10 lines
174 B
C
Raw Normal View History

#include "utils.h"
#include "mmu.h"
#include "memory_map.h"
2018-03-03 03:43:46 +01:00
#include "cpu_context.h"
void warmboot_main(void) {
2018-03-03 03:43:46 +01:00
/* TODO: lots of stuff */
core_jump_to_lower_el();
}