..Bootstrap.c 321 B

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