mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 13:51:28 +00:00
16 lines
353 B
C
16 lines
353 B
C
/* This Hello World simply print out "Hello World" */
|
|
|
|
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
|
|
void * private = &private;
|
|
|
|
int main (int argc, char ** argv, char ** envp)
|
|
{
|
|
DkSegmentRegister(PAL_SEGMENT_FS, private);
|
|
void * ptr;
|
|
__asm__ volatile("mov %%fs:0, %0" : "=r"(ptr) :: "memory");
|
|
pal_printf("TLS = %p\n", ptr);
|
|
return 0;
|
|
}
|