doomgod

PearPC Config

Oct 23rd, 2013
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ## PearPC Configuration File
  2.  
  3. ##
  4. ## Start Resolution
  5. ##
  6. ## (clients that use video.x can change the resolution at runtime,
  7. ##  so this would be used only for starting up)
  8. ##
  9. ##  format:  "(width)x(height)x(depth)"
  10. ##      or   "(width)x(height)x(depth)@(frequency)"
  11. ##
  12. ##  depth can only be 15 or 32
  13. ##
  14. ##  default: "800x600x15"
  15. ##
  16.  
  17. ppc_start_resolution = "1024x768x32"
  18.  
  19. ##
  20. ## Set this to non-zero for turning on fullscreen mode on startup.
  21. ##
  22.  
  23. ppc_start_full_screen = 0
  24.  
  25. ##
  26. ## Redraw interval (in ms)
  27. ## must be between 10 and 500
  28. ##
  29. ## If you set this higher, PearPC will spend less time doing redraws
  30. ## (and so run faster) but feel less responsive. You should adjust
  31. ## this to your computer speed and personal preference.
  32. ##
  33.  
  34. redraw_interval_msec = 20
  35.  
  36. ##
  37. ## Key codes
  38. ##
  39.  
  40. key_compose_dialog = "F11"
  41. key_change_cd_0 = "none"
  42. key_toggle_mouse_grab = "F12"
  43. key_toggle_full_screen = "Alt+Return"
  44.  
  45.  
  46. ##
  47. ## Loader
  48. ##
  49.  
  50. ##
  51. ##  Boot method
  52. ##    this can be
  53. ##    1. "auto", prom will boot the first bootable partition found (default)
  54. ##    2. "select", prom will show you a list of bootable partitions
  55. ##    3. "force", prom will load and boot the local file prom_loadfile
  56. ##
  57.  
  58. prom_bootmethod = "select"
  59.  
  60. ## Example of how to use "force":
  61.  
  62. #prom_bootmethod = "force"
  63. #prom_loadfile = "test/yaboot"
  64. #prom_env_bootpath = "disk"
  65.  
  66. ##
  67. ##  bootargs: don't change unless you know what you are doing
  68. ##  machargs: set to "-v" to get a verbose startup
  69. ##
  70.  
  71. prom_env_bootargs = ""
  72. #prom_env_machargs = "-v"
  73.  
  74. ##
  75. ##  This is needed if you want to boot Mac OS X
  76. ##
  77. prom_driver_graphic = "video.x"
  78.  
  79. ## This will adjust the position of the initial page table (don't change)
  80.  
  81. #page_table_pa = 104857600
  82.  
  83. ##
  84. ## CPU Config
  85. ##
  86. ##  Processor Version Register
  87. ##  Defaults to 0x00088302 (G3)
  88. ##  Set to 0x000c0201 to enable G4 emulation
  89. ##  Only change if you know want you are doing
  90. ##
  91.  
  92. cpu_pvr = 0x00088302
  93. #cpu_pvr = 0x000c0201
  94.  
  95.  
  96. ##
  97. ## Main memory (default 128 MiB)
  98. ## must be >= 64 MiB
  99. ##
  100.  
  101. memory_size=0x20000000
  102.  
  103. ##
  104. ## IO Devices
  105. ##
  106.  
  107. ##
  108. ##  PCI IDE Config
  109. ##
  110. ##  Drive type will be set according to file extension:
  111. ##      .img: Harddisk (filesize must be multiple of 516096)
  112. ##      .iso: CD-Rom
  113. ##  Or you can override this by specifying the type via
  114. ##  pci_ide0_master_type / pci_ide0_slave_type
  115. ##
  116. ##  Valid drive types are:
  117. ##      hd:     A hdd image should be specified
  118. ##              e.g. "test/imgs/linux.img"
  119. ##      cdrom:      A cdrom image should be specified
  120. ##              For Linux or BeOS a cdrom device can be specified as well
  121. ##              e.g. "/dev/cdrom"
  122. ##      nativecdrom:    Platform dependant
  123. ##          Win (SPTI): drive letter, e.g. "d:\"
  124. ##          Win (ASPI): SCSI host adapter,target,lun e.g. "2,0,1"
  125. ##          BeOS (ATAPI): device path, e.g. "/dev/disk/ide/atapi/0/master/0/raw"
  126.  
  127. pci_ide0_master_installed = 1
  128. pci_ide0_master_image = "jaguar/HardDisk.img"
  129. pci_ide0_master_type = "hd"
  130.  
  131. pci_ide0_slave_installed = 0
  132. pci_ide0_slave_image = "jaguar/macos8.dmg"
  133. pci_ide0_slave_type = "cdrom"
  134.  
  135. pci_ide1_master_installed = 0
  136. pci_ide1_master_image = "jaguar/cd2.img"
  137. pci_ide1_master_type = "cdrom"
  138.  
  139. pci_ide1_slave_installed = 0
  140. pci_ide1_slave_image = ""
  141. pci_ide1_slave_type = "cdrom"
  142.  
  143. ##
  144. ##  Network
  145. ##
  146. ##  Choose one of the cards
  147.  
  148. pci_3c90x_installed = 0
  149. pci_3c90x_type = "tap"
  150. pci_3c90x_interface = ""
  151. pci_3c90x_mac = "de:ad:ca:fe:12:35"
  152.  
  153. pci_rtl8139_installed = 0
  154. pci_rtl8139_type = "tap"
  155. pci_rtl8139_interface = ""
  156. pci_rtl8139_mac = "de:ad:ca:fe:12:34"
  157.  
  158. ##
  159. ##  USB
  160. ##
  161. pci_usb_installed = 0
  162.  
  163. ##
  164. ##  NVRAM
  165. ##
  166. nvram_file = "jaguar/nvram"
Advertisement
Add Comment
Please, Sign In to add comment