mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-05 21:31:36 +00:00
15 lines
321 B
C
15 lines
321 B
C
#include "pal.h"
|
|
#include "pal_debug.h"
|
|
|
|
int main (int argc, char ** argv, char ** envp)
|
|
{
|
|
/* check if the program is loaded */
|
|
pal_printf("User Program Started\n");
|
|
|
|
/* check control block */
|
|
/* check executable name */
|
|
pal_printf("Loaded Executable: %s\n", pal_control.executable);
|
|
|
|
return 0;
|
|
}
|