Atmosphere/mesosphere/source/test.cpp

18 lines
316 B
C++
Raw Normal View History

#include <mesosphere/core/make_object.hpp>
#include <mesosphere/processes/KEvent.hpp>
using namespace mesosphere;
2018-10-31 20:47:31 +00:00
int main(void) {
2018-11-06 16:45:27 +00:00
auto [res, h1, h2] = MakeObjectWithHandle<KEvent>();
(void)res; (void)h1; (void)h2;
2018-10-31 20:47:31 +00:00
for(;;);
return 0;
}
extern "C" {
void _start(void) {
main();
}
}