..Bootstrap.c 318 B

12345678910111213
  1. #include "pal.h"
  2. #include "pal_debug.h"
  3. int main(int argc, char** argv, char** envp) {
  4. /* check if the program is loaded */
  5. pal_printf("User Program Started\n");
  6. /* check control block */
  7. /* check executable name */
  8. pal_printf("Loaded Executable: %s\n", pal_control.executable);
  9. return 0;
  10. }