Advertisement
Guest User

Untitled

a guest
Jan 13th, 2016
4,732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. // Boot menu configuration
  2. boot_config =
  3. {
  4. // Default timeout in secondes
  5. // If timeout = -1, disable autoboot
  6. timeout = 3;
  7.  
  8. // Some devices (n3ds?) seems to have
  9. // some timing problems when using timeout=0 (autoboot).
  10. // You may increase this value to improve boot success rate.
  11. // Default delay (8) should be good for o3ds, 2 seems good for n3ds
  12. autobootfix = 2;
  13.  
  14. // if timeout = 0 (autoboot),
  15. // hold this key to enter the menu
  16. // keycode list : https://goo.gl/4XLDIL
  17. recovery = 2; // SELECT
  18.  
  19. // Default boot entry
  20. default = 0;
  21.  
  22. // Boot menu entries (11 max)
  23. entries =
  24. (
  25. {
  26. title = "ReiNand";
  27. path = "/reiNand.dat";
  28. offset = "0x12000";
  29. },
  30. {
  31. title = "HomeBrewMenu";
  32. path = "/HBL.3dsx";
  33. }
  34. );
  35. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement