You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: zdocs/users/manual.md
+15-14Lines changed: 15 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,16 +49,16 @@ Run the emulator in runtime (using the interpreter).
49
49
Enter the interactive debugger. The user may also enter the debugger at any point by pressing Control and C, when the command line window is selected.
50
50
51
51
```
52
-
-b, --bootrom TEXT:FILE
52
+
-b, --bootrom filename
53
53
```
54
54
55
-
Specifies the Boot ROM path (optional; looks for bootrom.bin by default)
55
+
Specifies the Boot ROM path, where `filename` specifies the location of the ROM (optional; looks for bootrom.bin by default)
56
56
57
57
```
58
-
-m, --machine TEXT
58
+
-m, --machine machineid
59
59
```
60
60
61
-
Specify machine ID (optional; will attempt to determine machine ID from the boot rom otherwise)
61
+
Specify machine ID, where `machineid` is a short string identifier for the machine (i.e. pm6100). (optional; will attempt to determine machine ID from the boot rom otherwise)
62
62
63
63
```
64
64
list machines
@@ -87,13 +87,13 @@ Set the RAM sizes to use, with X being an integer of a power of 2 up to 512 (dep
87
87
gfxmem_size
88
88
```
89
89
90
-
Specifies the amount of available graphics memory.
90
+
Specifies the amount of available graphics memory.
91
91
92
92
```
93
-
--fdd_img TEXT:FILE
93
+
--fdd_img filename
94
94
```
95
95
96
-
Set the floppy disk image
96
+
Set the floppy disk image. `filename` is the name of the floppy disk you want to insert into the emulator.
97
97
98
98
```
99
99
--fdd_wr_prot=1
@@ -102,23 +102,23 @@ Set the floppy disk image
102
102
Set the floppy to read-only
103
103
104
104
```
105
-
--hdd_img TEXT:FILE
105
+
--hdd_img filename
106
106
```
107
107
108
-
Set the hard disk image
108
+
Set the hard disk image. `filename` is the name of the floppy disk you want to insert into the emulator. On machines that support SCSI hard disk, you can also use the colon (:) to add multiple hard disks.
109
109
110
110
```
111
-
--cdr_img TEXT:FILE
111
+
--cdr_img filename
112
112
```
113
113
114
-
Set the CD ROM image
114
+
Set the CD ROM image. `filename` is the name of the CD ROM image you want to insert into the emulator.
115
115
116
116
```
117
117
hdd_config
118
118
cdr_config
119
119
```
120
120
121
-
These properties determine where in the bus the hard disk and CD ROM are set up in. For example, these can be `Ide0:0` or `CmdAta0:0`.
121
+
These properties determine where in the bus the hard disk and CD ROM are set up in. For example, these can be `Ide0:0` or `CmdAta0:0`.
122
122
123
123
```
124
124
--cpu
@@ -154,10 +154,10 @@ pci_C1
154
154
Specified what devices are connected to a particular PCI slot. Not supported on NuBus machines such as the Power Mac 6100.
155
155
156
156
```
157
-
--adb_devices TEXT
157
+
--adb_devices device_name
158
158
```
159
159
160
-
Set the ADB devices to attach, comma-separated.
160
+
Set the ADB devices to attach where `device_name` is the name of the device to attach, comma-separated.
161
161
162
162
### Command Line Examples
163
163
@@ -194,6 +194,7 @@ Early implementations of the iMac G3, Power Mac G3 Blue and White, and Apple Pip
194
194
The debugger can be used to show what code is currently being executed, the contents of memory as hex or 68K assembly or PowerPC assembly, NVRAM variables, memory regions, and CPU registers. It can also be used to change memory, registers, and nvram variables. It can step through instructions one at a time or many instructions at once.
195
195
196
196
## Quirks
197
+
197
198
### Mouse Grabbing
198
199
199
200
While the emulator display window is in focus, press Control-G to hide the host mouse cursor to control the guest mouse cursor directly. Press Control-G to show the host mouse cursor again and control the guest mouse cursor only when the host mouse cursor is within the emulator display window.
0 commit comments