summaryrefslogblamecommitdiff
path: root/Source/Library/Userland/Start.cpp
blob: 02eb951adc32b2fa9bede0689ab441917acbce53 (plain) (tree)
1
2
3
4
5
6
7
8







                                           
#include <types.h>

int main();

extern "C" void start() {
	u32int r = main();
	asm volatile("int $66" : : "a"(r));
}