-
-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathPearPCConfig.txt
More file actions
148 lines (116 loc) · 3.04 KB
/
PearPCConfig.txt
File metadata and controls
148 lines (116 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
## PearPC Configuration File
##
## Start Resolution
##
## (clients that use video.x can change the resolution at runtime,
## so this would be used only for starting up)
##
## format: "(width)x(height)x(depth)"
## or "(width)x(height)x(depth)@(frequency)"
##
## depth can only be 15 or 32
##
## default: "800x600x15"
##
ppc_start_resolution = "{SCREEN_WIDTH}x{SCREEN_HEIGHT}x32"
##
## Set this to non-zero for turning on fullscreen mode on startup.
##
ppc_start_full_screen = 0
##
## Key codes
##
key_compose_dialog = "none"
key_toggle_mouse_grab = "none"
key_toggle_full_screen = "none"
##
## Loader
##
##
## Boot method
## this can be
## 1. "auto", prom will boot the first bootable partition found (default)
## 2. "select", prom will show you a list of bootable partitions
## 3. "force" [ADVANCED USERS ONLY], prom will load and boot the
## local file prom_loadfile
##
prom_bootmethod = "auto"
## Example of how to use "force":
#prom_bootmethod = "force"
#prom_loadfile = "test/yaboot"
#prom_env_bootpath = "disk"
##
## bootargs: don't change unless you know what you are doing
## machargs: set to "-v" to get a verbose startup
##
#prom_env_bootargs = ""
prom_env_machargs = "{MACH_ARGS}"
##
## This is needed if you want to boot Mac OS X
##
prom_driver_graphic = "video.x"
## This will adjust the position of the initial page table (don't change)
#page_table_pa = 104857600
##
## CPU Config
##
## Processor Version Register
## Usually set to to 0x00088302 (G3)
## Set to 0x000c0201 to enable G4 emulation
## See https://pearpc.sourceforge.net/pvr.html for all possible values
## Only change if you know want you are doing
##
cpu_pvr = 0x00088302
##
## Main memory (default 128 MiB)
## must be >= 64 MiB
##
memory_size={MEMORY_SIZE}
##
## IO Devices
##
##
## PCI IDE Config
##
## Drive type will be set according to file extension:
## .img: Harddisk (filesize must be multiple of 516096)
## .iso: CD-Rom
## Or you can override this by specifying the type via
## pci_ide0_master_type / pci_ide0_slave_type
##
## Valid drive types are:
## hd: A hdd image should be specified
## e.g. "test/imgs/linux.img"
## cdrom: A cdrom image should be specified
## For Linux or BeOS a cdrom device can be specified as well
## e.g. "/dev/cdrom"
## nativecdrom: Platform dependant
## Win (SPTI): drive letter, e.g. "d:\"
## Win (ASPI): SCSI host adapter,target,lun e.g. "2,0,1"
## BeOS (ATAPI): device path, e.g. "/dev/disk/ide/atapi/0/master/0/raw"
pci_ide0_master_installed = {PCI_IDE0_MASTER_INSTALLED}
pci_ide0_master_image = "{PCI_IDE0_MASTER_IMAGE}"
pci_ide0_master_type = "{PCI_IDE0_MASTER_TYPE}"
pci_ide0_slave_installed = {PCI_IDE0_SLAVE_INSTALLED}
pci_ide0_slave_image = "{PCI_IDE0_SLAVE_IMAGE}"
pci_ide0_slave_type = "{PCI_IDE0_SLAVE_TYPE}"
##
## Network
##
## Choose one of the cards
pci_3c90x_installed = 0
pci_3c90x_mac = "de:ad:ca:fe:12:34"
pci_rtl8139_installed = 0
pci_rtl8139_mac = "de:ad:ca:fe:12:35"
##
## USB
##
pci_usb_installed = 1
##
## Serial Port (internal use)
##
pci_serial_installed = 0
##
## NVRAM
##
nvram_file = "nvram"