mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-01 13:14:39 +00:00
18 lines
279 B
C++
18 lines
279 B
C++
#include <mesosphere/core/make_object.hpp>
|
|
#include <mesosphere/processes/KEvent.hpp>
|
|
|
|
using namespace mesosphere;
|
|
|
|
int main(void) {
|
|
auto obj = MakeObjectRaw<KEvent>();
|
|
(void)obj;
|
|
for(;;);
|
|
return 0;
|
|
}
|
|
|
|
extern "C" {
|
|
void _start(void) {
|
|
main();
|
|
}
|
|
}
|