-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathdisks.ts
More file actions
2098 lines (2001 loc) · 106 KB
/
Copy pathdisks.ts
File metadata and controls
2098 lines (2001 loc) · 106 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {type AppearanceVariant, type Appearance} from "./controls/Appearance";
import {type EmulatorChunkedFileSpec} from "./emulator/emulator-common";
import {
type MachineDef,
MAC_128K,
MAC_512KE,
MAC_SE,
MAC_II,
MAC_IIFX,
MAC_PLUS,
POWER_MACINTOSH_G3_BW,
POWER_MACINTOSH_9500,
QUADRA_650,
POWER_MACINTOSH_6100,
NEXT_COMPUTER,
NEXT_STATION,
NEXT_STATION_TURBO_COLOR,
POWER_MACINTOSH_G3_BEIGE,
POWER_MACINTOSH_7500,
POWER_MACINTOSH_G3_BW_DPPC,
POWER_MACINTOSH_G4_PEARPC,
IMAC_G3,
} from "./machines";
type GeneratedChunkedFileSpec = Omit<
EmulatorChunkedFileSpec,
"prefetchChunks" | "baseUrl"
>;
export type EmulatorDiskDef = {
// Dynamically imported since some manifests can be quite large, and we
// don't want to incur the cost of loading all of them up-front.
generatedSpec: () => Promise<{default: GeneratedChunkedFileSpec}>;
// prefetchChunks are semi-automatically generated -- we will get a
// warning via validateSpecPrefetchChunks() if these are incorrect.
prefetchChunks: number[];
// Changes to this file will be persisted in the origin private file
// system.
persistent?: boolean;
// Will be mounted as a floppy disk in emulators that make the distinction
// between disk types.
isFloppy?: boolean;
// If true, the disk already has a device image header (with a partition
// map) and does not need one appended for emulators that need it.
hasDeviceImageHeader?: boolean;
// Additional files that need to be loaded into the emulator's file system
// booting from this disk. Map from machine to a map of file names to file
// URLs.
extraMachineFiles?: Map<MachineDef, {[fileName: string]: string}>;
};
export type SystemDiskDef = EmulatorDiskDef & {
displayName: string;
displaySubtitle?: string;
releaseDate: [year: number, month: number, date: number];
customDate?: Date;
description: string;
preferredMachine: MachineDef;
appleTalkSupported?: boolean;
infiniteHdSubset?: "mfs" | "system6" | "macosx";
delayAdditionalDiskMount?: boolean;
appearance?: Appearance;
appearanceVariant?: AppearanceVariant;
isUnstable?: boolean;
notable?: boolean;
hiddenInBrowser?: boolean;
};
export type DiskFile = {
file: File;
treatAsCDROM: boolean;
hasDeviceImageHeader?: boolean;
};
export type PlaceholderDiskDef = {
type: "placeholder";
displayName: string;
displaySubtitle?: string;
releaseDate: [year: number, month: number, date: number];
description: string;
preferredMachine: MachineDef;
appearance?: Appearance;
};
export function isPlaceholderDiskDef(
disk: SystemDiskDef | PlaceholderDiskDef
): disk is PlaceholderDiskDef {
return "type" in disk && disk.type === "placeholder";
}
function isSystemDiskDef(
disk: SystemDiskDef | PlaceholderDiskDef
): disk is SystemDiskDef {
return !isPlaceholderDiskDef(disk);
}
const SYSTEM_1_0: SystemDiskDef = {
displayName: "System 1.0",
description: "Initial system software release, shipped with the Mac 128K.",
releaseDate: [1984, 1, 24],
prefetchChunks: [0, 1],
preferredMachine: MAC_128K,
infiniteHdSubset: "mfs",
// Loading the Infinite HD disk as part of the initial set of images does
// appear to work in System 1.0 under Mini vMac, but if we delay it until
// after the system is booted, it appears to work.
delayAdditionalDiskMount: true,
generatedSpec: () => import("./Data/System 1.0.dsk.json"),
notable: true,
};
const SYSTEM_1_0_ORIGINAL: SystemDiskDef = {
displayName: "System 1.0 (System Disk)",
description: "Initial system software release, shipped with the Mac 128K.",
releaseDate: [1984, 1, 24],
prefetchChunks: [0, 1],
preferredMachine: MAC_128K,
infiniteHdSubset: "mfs",
delayAdditionalDiskMount: true,
generatedSpec: () => import("./Data/System 1.0 (Original).dsk.json"),
isFloppy: true,
};
const SYSTEM_1_1: SystemDiskDef = {
displayName: "System 1.1",
description:
"Maintenance release that improved disk copying speeds and added the “Set Startup” command and the Finder about box.",
releaseDate: [1984, 5, 5],
prefetchChunks: [0, 1],
preferredMachine: MAC_128K,
infiniteHdSubset: "mfs",
generatedSpec: () => import("./Data/System 1.1.dsk.json"),
};
const SYSTEM_2_0: SystemDiskDef = {
displayName: "System 2.0",
description:
"Introduced the ”New Folder” and ”Shut Down” commands, the MiniFinder, and the Choose Printer DA. Also added icons to list view and the Command-Shift-3 screenshot FKEY.",
releaseDate: [1985, 4, 8],
prefetchChunks: [0, 1],
preferredMachine: MAC_128K,
infiniteHdSubset: "mfs",
generatedSpec: () => import("./Data/System 2.0.dsk.json"),
notable: true,
};
const SYSTEM_2_1: SystemDiskDef = {
displayName: "System 2.1",
description:
"Added support for the Hard Disk 20 drive and the HFS file system.",
releaseDate: [1985, 9, 17],
prefetchChunks: [0, 1, 2],
// The Mac 128K is supported, but HFS is not loaded in that case.
preferredMachine: MAC_512KE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 2.1.dsk.json"),
notable: true,
};
const SYSTEM_3_0: SystemDiskDef = {
displayName: "System 3.0",
description:
"Added more complete support for HFS, a RAM disk cache, zoom boxes for windows and a redesigned control panel. Introduced with the Mac Plus.",
releaseDate: [1986, 1, 16],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_PLUS,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 3.0.dsk.json"),
notable: true,
};
const SYSTEM_3_1: PlaceholderDiskDef = {
type: "placeholder",
displayName: "System 3.1",
releaseDate: [1986, 2, 14], // Precise date is not known
description:
"Caused data corruption and was superseded by 3.2 shortly after release.",
preferredMachine: MAC_PLUS,
};
const SYSTEM_3_2: SystemDiskDef = {
displayName: "System 3.2",
description:
"Includes redesigned Calculator and Chooser desktop accessories.",
releaseDate: [1986, 6, 2],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_PLUS,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 3.2.dsk.json"),
};
const SYSTEM_3_3: SystemDiskDef = {
displayName: "System 3.3",
description:
"Enhanced AppleShare file serving support. The Trash can icon now bulges when it's not empty.",
releaseDate: [1987, 1, 12],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_PLUS,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 3.3.dsk.json"),
};
const SYSTEM_4_0: SystemDiskDef = {
displayName: "System 4.0",
description:
"Added the Find File desktop accessory and the Restart command. Features a redesigned control panel. Released with the Mac SE.",
releaseDate: [1987, 3, 2],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 4.0.dsk.json"),
};
const SYSTEM_4_1: SystemDiskDef = {
displayName: "System 4.1",
description:
"Added Easy Access accessibility features. Improved compatibility with larger hard drives. Released with the Mac II.",
releaseDate: [1987, 4, 14],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_II,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 4.1.dsk.json"),
};
const SYSTEM_5_0: SystemDiskDef = {
displayName: "System 5.0",
description:
"Introduced the MultiFinder, revised the Finder about box, and improved printing support.",
releaseDate: [1987, 10, 8],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 5.0 HD.dsk.json"),
notable: true,
};
const SYSTEM_5_1: SystemDiskDef = {
displayName: "System 5.1",
description: "Updated the LaserWriter Driver and Apple HD SC Setup.",
releaseDate: [1987, 12, 1],
prefetchChunks: [0, 1, 2],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 5.1 HD.dsk.json"),
};
const SYSTEM_6_0: SystemDiskDef = {
displayName: "System 6.0",
description: "Added MacroMaker, Map and CloseView utilities.",
releaseDate: [1988, 4, 30],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0 HD.dsk.json"),
notable: true,
};
const SYSTEM_6_0_1: PlaceholderDiskDef = {
type: "placeholder",
displayName: "System 6.0.1",
description: "Released with the Mac IIx, buggy and short-lived.",
releaseDate: [1988, 9, 19],
preferredMachine: MAC_SE,
};
const SYSTEM_6_0_2: SystemDiskDef = {
displayName: "System 6.0.2",
description: "Updated LaserWriter and other printing-related utilites.",
releaseDate: [1988, 9, 19],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.2 HD.dsk.json"),
};
const SYSTEM_6_0_3: SystemDiskDef = {
displayName: "System 6.0.3",
description: "Added support for the Mac IIcx and SE/30.",
releaseDate: [1989, 3, 7],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.3 HD.dsk.json"),
};
const SYSTEM_6_0_4: SystemDiskDef = {
displayName: "System 6.0.4",
description:
"Added support for the Mac IIci and Portable. Improved the installer. Holding down the option key when double-clicking in the Finder closes the parent window.",
releaseDate: [1989, 9, 20],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.4 HD.dsk.json"),
};
const SYSTEM_6_0_5: SystemDiskDef = {
displayName: "System 6.0.5",
description:
"Bundled 32-bit QuickDraw (previously a separate package). Added support for the Mac IIfx.",
releaseDate: [1990, 3, 19],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.5 HD.dsk.json"),
notable: true,
};
const SYSTEM_6_0_6: PlaceholderDiskDef = {
type: "placeholder",
displayName: "System 6.0.6.",
releaseDate: [1990, 10, 15], // Official release date is not known.
description: "Never officially released due to an AppleTalk bug.",
preferredMachine: MAC_SE,
};
const SYSTEM_6_0_7: SystemDiskDef = {
displayName: "System 6.0.7",
description:
"First release to ship on 1440K disks. Added support for the Classic, LC and IIsi.",
releaseDate: [1990, 10, 15],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.7 HD.dsk.json"),
};
const SYSTEM_6_0_8: SystemDiskDef = {
displayName: "System 6.0.8",
description:
"Final release of System 6, updated printing software to match the printing software of System 7.",
releaseDate: [1991, 4, 17],
prefetchChunks: [0, 1, 2, 3, 4, 5, 6, 8],
preferredMachine: MAC_SE,
infiniteHdSubset: "system6",
generatedSpec: () => import("./Data/System 6.0.8 HD.dsk.json"),
};
const SYSTEM_7_0: SystemDiskDef = {
displayName: "System 7.0",
description:
"Fully 32-bit clean, the MultiFinder is now mandatory, reorganized the System Folder into subfolders, made the Apple menu customizable, revamped the window appearance, and much more.",
releaseDate: [1991, 5, 13],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 18, 19,
],
preferredMachine: MAC_IIFX,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.0 HD.dsk.json"),
notable: true,
};
const SYSTEM_7_0_1: SystemDiskDef = {
displayName: "System 7.0.1",
description:
"Added the Caps Lock extension, added support for initial set of PowerBooks and Quadras.",
releaseDate: [1991, 10, 21],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
],
preferredMachine: MAC_IIFX,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.0.1 HD.dsk.json"),
};
const SYSTEM_7_1: SystemDiskDef = {
displayName: "System 7.1",
description:
"Added the Fonts folder, introduced system enablers to support new Mac models and improved internationalization support.",
releaseDate: [1992, 8, 28],
prefetchChunks: [
0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22,
25, 26,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.1 HD.dsk.json"),
};
const SYSTEM_7_1_1: SystemDiskDef = {
displayName: "System 7.1.1",
displaySubtitle: "Pro",
description: "Bundled PowerTalk and AppleScript.",
releaseDate: [1993, 10, 21],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
44,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.1.1 HD.dsk.json"),
};
const SYSTEM_7_1_2: SystemDiskDef = {
displayName: "System 7.1.2",
description:
"Initial system software for the first Power Macintosh computers.",
releaseDate: [1994, 3, 14],
prefetchChunks: [0, 1, 2],
preferredMachine: POWER_MACINTOSH_6100,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.1.2 HD.dsk.json"),
};
const SYSTEM_7_1_2_DISK_TOOLS: SystemDiskDef = {
displayName: "System 7.1.2 Disk Tools",
description:
"Disk Tools startup disk from the floppy disk version of System 7.1.2.",
releaseDate: [1994, 3, 14],
prefetchChunks: [0],
preferredMachine: POWER_MACINTOSH_6100,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.1.2 Disk Tools FD.dsk.json"),
isFloppy: true,
};
const SYSTEM_7_5: SystemDiskDef = {
displayName: "System 7.5",
description:
"Featured a new startup screen, drag-and-drop support and the Launcher. Included a hierarchical Apple menu, Extensions Manager, menu bar clock, Find File, Stickies, WindowShade, all based on licensed third-party utilities.",
releaseDate: [1994, 9, 12],
prefetchChunks: [
0, 1, 2, 6, 7, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 33, 39, 40, 41, 43, 44, 45, 46, 47, 48, 50, 51, 54, 55, 56,
57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 70, 71, 72,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.5 HD.dsk.json"),
notable: true,
};
const SYSTEM_7_5_DISK_TOOLS: SystemDiskDef = {
displayName: "System 7.5 Disk Tools",
description:
"Disk Tools startup disk from the floppy disk version of System 7.5.",
releaseDate: [1994, 9, 12],
prefetchChunks: [0],
preferredMachine: POWER_MACINTOSH_6100,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.5 Disk Tools FD.dsk.json"),
isFloppy: true,
};
const SYSTEM_7_5_1: SystemDiskDef = {
displayName: "System 7.5.1",
description:
"Bug fixes and small tweaks. Startup screen now now features the Mac OS logo.",
releaseDate: [1995, 3, 23],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23,
27, 28, 29, 31, 32, 33, 34, 35, 39, 41, 48, 50, 51, 54, 55, 57, 58, 59,
64, 65, 66, 67, 68, 69, 70, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
90, 91, 92, 93, 94,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.5.1 HD.dsk.json"),
};
const SYSTEM_7_5_2: SystemDiskDef = {
displayName: "System 7.5.2",
description:
"Introduced the Open Transport networking stack. Added support for PCI-based Power Macs.",
releaseDate: [1995, 6, 19],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 23,
27, 28, 29, 31, 32, 33, 34, 35, 39, 41, 48, 50, 51, 54, 55, 57, 58, 59,
64, 65, 66, 67, 68, 69, 70, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
90, 91, 92, 93, 94,
],
preferredMachine: POWER_MACINTOSH_7500,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.5.2 HD.dsk.json"),
};
const SYSTEM_7_5_3: SystemDiskDef = {
displayName: "System 7.5.3",
description:
"Brought Open Transport and other improvements released with the PCI Power Mac-only 7.5.2 release to a broader set of Macs.",
releaseDate: [1996, 3, 11],
prefetchChunks: [
0, 3, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24,
25, 26, 27, 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, 79, 80, 88, 89, 90, 92, 93,
94, 96, 98, 99, 100, 102, 103, 104, 106, 107, 108, 109, 110, 111, 113,
114, 116, 117, 166,
],
preferredMachine: QUADRA_650,
appearanceVariant: "System7",
appleTalkSupported: true,
generatedSpec: () => import("./Data/System 7.5.3 HD.dsk.json"),
notable: true,
};
const SYSTEM_7_5_3_PPC: SystemDiskDef = {
displayName: "System 7.5.3",
displaySubtitle: "PowerPC",
description:
"Installation with OpenDoc, QuickDraw GX and other PowerPC-only software.",
releaseDate: [1996, 3, 11],
prefetchChunks: [
0, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23,
24, 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, 55, 56, 57, 58, 59, 60, 61, 62,
63, 64, 68, 69, 70, 84, 85, 86, 87, 88, 89, 91, 92, 93, 94, 96, 97, 98,
99, 100, 101, 102, 103, 106, 107, 108, 109, 110, 111, 112, 114, 120,
121, 122, 123, 124, 125, 129, 130, 131, 133, 134, 135, 136, 137, 139,
140, 141, 142, 143, 144, 145, 146, 147, 148, 152, 153, 155,
],
preferredMachine: POWER_MACINTOSH_9500,
appearanceVariant: "System7",
appleTalkSupported: true,
generatedSpec: () => import("./Data/System 7.5.3 (PPC) HD.dsk.json"),
};
const KANJITALK_7_5_3: SystemDiskDef = {
displayName: "KanjiTalk 7.5.3",
description: "Japanese edition of System 7.5.3.",
releaseDate: [1996, 3, 11],
prefetchChunks: [
0, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 27, 28,
29, 30, 31, 32, 33, 34, 35, 43, 44, 45, 46, 47, 49, 50, 51, 52, 54, 62,
63, 64, 65, 66, 67, 69, 70, 71, 72, 73, 76, 77, 78, 79, 80, 81, 82, 83,
84, 85, 89, 90, 94, 114, 116, 142, 147, 159, 161, 168, 169, 170, 171,
172, 174, 175, 176, 177, 179, 180, 181, 182, 183, 185, 186, 187, 189,
190, 191, 192, 193, 194, 195, 196, 197, 399,
],
preferredMachine: QUADRA_650,
appearanceVariant: "System7",
appleTalkSupported: true,
generatedSpec: () => import("./Data/KanjiTalk 7.5.3 HD.dsk.json"),
notable: true,
};
const SYSTEM_7_5_4: PlaceholderDiskDef = {
type: "placeholder",
displayName: "System 7.5.4",
description:
"Withdrawn from release at the last minute due a showstopper bug.",
releaseDate: [1996, 9, 18],
preferredMachine: QUADRA_650,
};
const SYSTEM_7_5_5: SystemDiskDef = {
displayName: "System 7.5.5",
description: "Improved memory system performance and reliability.",
releaseDate: [1996, 9, 18],
prefetchChunks: [
0, 2, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 27, 28, 30, 31, 32, 33, 34, 35, 38, 45, 46, 49, 50, 51, 57, 59,
61, 64, 66, 70, 71, 79, 83, 84, 86, 87, 88, 89, 90, 95, 96, 97, 100,
103, 107, 114, 115, 125, 126, 130, 131, 132, 150, 151, 159, 161, 162,
163, 164, 165, 168, 170, 171, 172, 180, 181, 182, 183, 184, 185, 186,
187, 188, 189, 190,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/System 7.5.5 HD.dsk.json"),
};
const MAC_OS_7_6: SystemDiskDef = {
displayName: "Mac OS 7.6",
description:
"First to be officially called “Mac OS”. Improved performance and reliability. Featured a revamped Extensions Manager and speech support.",
releaseDate: [1997, 1, 7],
prefetchChunks: [
0, 3, 6, 11, 12, 13, 18, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 54,
55, 56, 57, 58, 59, 60, 61, 64, 65, 66, 67, 68, 69, 70, 78, 79, 80, 81,
82, 84, 85, 86, 88, 92, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108,
109, 110, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 126, 127,
128, 134, 136, 139, 140, 141, 145, 146, 147, 148, 149, 150, 151, 152,
153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166,
167, 168, 169, 170, 171,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearanceVariant: "System7",
generatedSpec: () => import("./Data/Mac OS 7.6 HD.dsk.json"),
notable: true,
};
const MAC_OS_8_0: SystemDiskDef = {
displayName: "Mac OS 8.0",
description:
"Introduced the Platinum appearance, multi-threaded Finder, context menus, popup windows, and other features.",
releaseDate: [1997, 7, 26],
prefetchChunks: [
0, 3, 6, 7, 10, 11, 12, 22, 23, 25, 28, 29, 30, 31, 33, 34, 35, 36, 37,
39, 40, 42, 44, 56, 58, 59, 60, 62, 63, 65, 66, 67, 68, 70, 71, 72, 73,
74, 75, 80, 81, 82, 83, 84, 85, 86, 87, 88, 94, 95, 96, 97, 100, 101,
102, 103, 104, 105, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
123, 124, 126, 130, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
150, 151, 152, 153, 154, 155, 156, 157, 158, 160, 165, 166, 172, 173,
174, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188,
189, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204,
205, 206, 208,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 8.0 HD.dsk.json"),
notable: true,
};
const MAC_OS_8_1: SystemDiskDef = {
displayName: "Mac OS 8.1",
description: "Added support for the HFS+ file system.",
releaseDate: [1998, 1, 19],
prefetchChunks: [
0, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 22, 23, 24, 25, 26, 27, 28, 29,
30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 61, 63, 64, 65, 66, 67, 68, 69,
70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 85, 86, 87, 88,
89, 90, 91, 92, 93, 94, 95, 96, 97, 108, 119, 120, 122, 123, 124, 125,
126, 129, 130, 131, 132, 137, 138, 143, 144, 145, 151, 152, 153, 154,
155, 158, 159, 160, 161, 162, 163, 169, 170, 171, 172, 175, 176, 177,
179, 181,
],
preferredMachine: QUADRA_650,
appleTalkSupported: true,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 8.1 HD.dsk.json"),
notable: true,
};
const MAC_OS_8_1_DISK_TOOLS_68K: SystemDiskDef = {
displayName: "Mac OS 8.1 Disk Tools (68K)",
description:
"Disk Tools startup disk from the floppy disk version of Mac OS 8.1.",
releaseDate: [1998, 1, 19],
prefetchChunks: [0],
preferredMachine: QUADRA_650,
generatedSpec: () => import("./Data/Mac OS 8.1 Disk Tools 68K FD.dsk.json"),
isFloppy: true,
};
const MAC_OS_8_1_DISK_TOOLS_PPC: SystemDiskDef = {
displayName: "Mac OS 8.1 Disk Tools (PPC)",
description:
"Disk Tools startup disk from the floppy disk version of Mac OS 8.1.",
releaseDate: [1998, 1, 19],
prefetchChunks: [0],
preferredMachine: POWER_MACINTOSH_9500,
generatedSpec: () => import("./Data/Mac OS 8.1 Disk Tools PPC FD.dsk.json"),
isFloppy: true,
};
const MAC_OS_8_5: SystemDiskDef = {
displayName: "Mac OS 8.5",
description:
"Introduced Sherlock, 32-bit icons in the Finder, font smoothing, a new help system and the application palette.",
releaseDate: [1998, 10, 17],
prefetchChunks: [
0, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25,
26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 62, 68, 69, 70, 71,
72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 87, 88, 89, 90, 91,
92, 93, 94, 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, 134, 135, 136, 137, 138, 139, 140, 181, 182,
183, 184, 185, 186, 187, 191, 192, 194, 195, 196, 197, 198, 200, 204,
205, 207, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220,
221, 222, 223, 224, 225, 228, 229, 230, 231, 232, 234, 240, 241, 243,
244, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259,
260, 261, 263, 264, 270, 272, 273, 280, 281, 334, 345, 347, 349, 350,
351, 352, 353, 354, 363, 364, 414, 415, 416, 421, 422, 423, 425, 426,
427, 428, 432, 453, 454, 458,
],
preferredMachine: POWER_MACINTOSH_9500,
appleTalkSupported: true,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 8.5 HD.dsk.json"),
notable: true,
};
const MAC_OS_8_6: SystemDiskDef = {
displayName: "Mac OS 8.6",
description:
"Added a revised nanokernel for improved multi-processing and multi-threading.",
releaseDate: [1999, 5, 10],
prefetchChunks: [
0, 4, 5, 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, 38, 39, 40, 41, 42,
43, 44, 45, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 68, 69, 72, 78,
80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97,
98, 99, 100, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,
120, 122, 124, 125, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136,
137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
151, 152, 193, 194, 195, 198, 199, 200, 201, 203, 204, 205, 208, 209,
211, 212, 213, 214, 216, 220, 221, 222, 223, 228, 229, 230, 231, 237,
238, 241, 242, 243, 244, 245, 246, 247, 248, 249, 251, 252, 253, 254,
255, 256, 259, 260, 261, 262, 263, 264, 265, 266, 267, 269, 271, 272,
279, 280, 281, 283, 284, 286, 347, 357, 358, 359, 360, 361, 362, 363,
364, 365, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378,
379, 380, 381, 382, 383, 384, 391, 392, 393, 399, 400, 401, 447, 448,
449, 456, 457, 458, 483, 488,
],
preferredMachine: POWER_MACINTOSH_9500,
appleTalkSupported: true,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 8.6 HD.dsk.json"),
};
const MAC_OS_9_0: SystemDiskDef = {
displayName: "Mac OS 9.0",
description:
"Introduced the Keychain, multiple user support, iTools integration, Sherlock internet channels and online software updates.",
releaseDate: [1999, 10, 23],
prefetchChunks: [
0, 4, 5, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 31, 32, 33, 38, 39, 41,
42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
61, 62, 63, 64, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, 87, 88, 89, 92, 97, 102, 103, 104, 105, 106, 107,
108, 116, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129,
130, 131, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 144, 145,
147, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162,
163, 165, 166, 167, 168, 169, 170, 172, 173, 174, 175, 176, 177, 178,
179, 180, 181, 182, 183, 185, 251, 252, 253, 254, 255, 256, 258, 259,
260, 261, 262, 263, 264, 272, 273, 274, 275, 277, 278, 280, 282, 284,
285, 286, 287, 306, 308, 309, 310, 311, 313, 314, 318, 320, 321, 322,
324, 325, 327, 331, 337, 338, 339, 342, 343, 347, 352, 353, 354, 356,
357, 359, 360, 361, 365, 368, 369, 370, 371, 373, 374, 378, 379, 380,
381, 383, 384, 385, 386, 387, 388, 389, 397, 399, 400, 406, 408, 409,
410, 411, 412, 413, 416, 417, 419, 422, 424, 428, 429, 430, 431, 432,
433, 441, 446, 492, 494, 499, 500, 501, 502, 503, 506, 507, 508, 511,
512, 515, 554, 559, 560, 562, 563, 564, 565, 566, 567, 568,
],
preferredMachine: POWER_MACINTOSH_G3_BW,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 9.0 HD.dsk.json"),
notable: true,
};
const MAC_OS_9_0_1: PlaceholderDiskDef = {
type: "placeholder",
displayName: "Mac OS 9.0.1",
description: "Under development but never released.",
releaseDate: [2000, 1, 1], // Planned release date unknown
preferredMachine: POWER_MACINTOSH_G3_BW,
};
const MAC_OS_9_0_2: PlaceholderDiskDef = {
type: "placeholder",
displayName: "Mac OS 9.0.2",
description: "Released with the PowerBook G3 (FireWire) only.",
releaseDate: [2000, 2, 16],
preferredMachine: POWER_MACINTOSH_G3_BW,
};
const MAC_OS_9_0_3: PlaceholderDiskDef = {
type: "placeholder",
displayName: "Mac OS 9.0.3",
description: "Released with iMacs only.",
releaseDate: [2000, 3, 1], // Exact date unknown
preferredMachine: POWER_MACINTOSH_G3_BW,
};
const MAC_OS_9_0_4: SystemDiskDef = {
displayName: "Mac OS 9.0.4",
description:
"Bug fixes, final release supported by the SheepShaver emulator.",
releaseDate: [2000, 4, 4],
prefetchChunks: [
0, 4, 5, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,
34, 35, 38, 39, 40, 44, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58,
59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 74, 75, 76, 77, 78,
79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 99, 103,
104, 105, 106, 110, 111, 112, 113, 114, 115, 116, 125, 126, 127, 128,
129, 130, 131, 132, 133, 134, 135, 136, 137, 140, 141, 145, 146, 149,
150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163,
164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177,
178, 179, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192,
193, 194, 195, 272, 273, 275, 276, 277, 278, 279, 280, 281, 286, 287,
288, 291, 292, 294, 295, 296, 297, 298, 299, 300, 303, 304, 305, 306,
307, 308, 309, 310, 311, 312, 315, 316, 317, 319, 320, 330, 332, 333,
334, 335, 336, 340, 346, 349, 350, 351, 352, 353, 355, 356, 359, 360,
361, 363, 364, 365, 366, 367, 368, 369, 370, 373, 374, 380, 382, 385,
386, 387, 391, 392, 394, 395, 396, 398, 399, 400, 401, 411, 412, 413,
416, 417, 418, 419, 422, 423, 424, 425, 479, 480, 481, 482, 483, 484,
493, 496, 497, 500, 501, 502, 504, 507, 511, 559, 567, 571, 572, 574,
575, 577, 579, 580, 583, 586, 587, 588, 589, 591, 593, 595, 596, 597,
598,
],
preferredMachine: POWER_MACINTOSH_G3_BW,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 9.0.4 HD.dsk.json"),
};
const MAC_OS_9_1: SystemDiskDef = {
displayName: "Mac OS 9.1",
description:
"Integrated Disc Burning within Finder and added a “Window” menu. First version supported under “Classic” on Mac OS X.",
releaseDate: [2001, 1, 9],
prefetchChunks: [
0, 4, 5, 6, 8, 9, 10, 12, 13, 15, 17, 18, 19, 20, 21, 22, 28, 29, 30,
31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 52,
54, 55, 63, 64, 65, 66, 67, 68, 69, 70, 71, 74, 75, 80, 82, 83, 87, 88,
89, 93, 95, 96, 98, 99, 100, 102, 103, 114, 115, 117, 118, 119, 120,
121, 122, 123, 124, 125, 126, 128, 129, 132, 134, 135, 136, 137, 138,
139, 165, 166, 167, 169, 170, 171, 172, 173, 185, 186, 187, 190, 191,
192, 194, 195, 196, 200, 201, 202, 203, 204, 205, 206, 207, 212, 214,
219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232,
233, 235, 236, 238, 239, 240, 241, 242, 245, 246, 250, 258, 259, 260,
262, 263, 274, 275, 276, 278, 279, 280, 281, 294, 295, 296, 297, 307,
308, 309, 310, 311, 312, 314, 315, 316, 319, 329, 330, 331, 334, 335,
336, 337, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 379,
440, 441, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454,
455, 456, 457, 458, 459, 460, 463, 464, 465, 473, 474, 475, 476, 477,
478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491,
492, 493, 494, 495, 496, 500, 501, 503, 504, 517, 638, 639, 640, 641,
642, 643, 644, 645, 646, 647, 648, 655, 656, 661, 816, 817, 818, 819,
856, 859, 860, 861, 868, 869, 891, 910, 911, 912, 913, 914, 915, 916,
918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931,
932, 933, 937, 938, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952,
953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966,
967, 968, 969, 970, 971, 972, 973, 974, 977, 978, 979, 980, 984, 985,
986, 987, 988, 989, 990,
],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 9.1 HD.dsk.json"),
};
const MAC_OS_9_2: PlaceholderDiskDef = {
type: "placeholder",
displayName: "Mac OS 9.2",
description:
"Improved performance. Only distributed with mid-2001 G4 (QuickSilver) Power Macs.",
releaseDate: [2001, 7, 18],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
};
const MAC_OS_9_2_1: PlaceholderDiskDef = {
type: "placeholder",
displayName: "Mac OS 9.2.1",
description: "Improved Classic application compatibility under Mac OS X.",
releaseDate: [2001, 8, 21],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
};
const MAC_OS_9_2_2: SystemDiskDef = {
displayName: "Mac OS 9.2.2",
description:
"Final Mac OS 9 release. Bug fixes for the Classic environment under Mac OS X.",
releaseDate: [2001, 12, 5],
prefetchChunks: [
0, 4, 5, 6, 8, 9, 10, 15, 16, 17, 18, 19, 20, 29, 31, 32, 34, 36, 37,
38, 45, 46, 47, 48, 49, 51, 53, 54, 56, 57, 58, 59, 60, 62, 63, 64, 65,
68, 70, 71, 72, 80, 81, 82, 84, 85, 86, 90, 91, 96, 98, 99, 104, 105,
109, 112, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
127, 128, 139, 140, 142, 143, 144, 145, 146, 149, 151, 152, 153, 154,
155, 158, 160, 161, 162, 165, 167, 168, 169, 170, 171, 172, 173, 175,
178, 183, 184, 186, 187, 188, 189, 191, 203, 204, 205, 209, 210, 212,
213, 214, 218, 219, 220, 221, 222, 223, 224, 225, 230, 232, 238, 239,
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 254,
255, 257, 258, 259, 260, 261, 266, 267, 279, 280, 281, 282, 283, 295,
296, 297, 299, 300, 301, 302, 314, 316, 317, 318, 328, 329, 330, 337,
340, 351, 352, 355, 356, 358, 359, 363, 364, 365, 369, 370, 371, 372,
373, 374, 375, 376, 377, 378, 379, 397, 398, 456, 457, 458, 459, 460,
461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474,
475, 476, 477, 478, 479, 480, 481, 482, 483, 498, 500, 501, 502, 503,
504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 517, 518,
519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 532, 533, 551,
553, 554, 556, 647, 651, 656, 776, 777, 778, 779, 780, 781, 782, 783,
784, 785, 786, 787, 794, 795, 799, 800, 958, 959, 960, 961, 998, 1001,
1002, 1003, 1010, 1033, 1052, 1053, 1054, 1055, 1056, 1057, 1059, 1114,
1117, 1118, 1119, 1120, 1124, 1126, 1127, 1128, 1129, 1130, 1131, 1132,
1133, 1134, 1135, 1136, 1137, 1138, 1140, 1142, 1145, 1146, 1147, 1148,
1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163,
1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175,
1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1185, 1186, 1187, 1197,
1198, 1199,
],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
appearance: "Platinum",
generatedSpec: () => import("./Data/Mac OS 9.2.2 HD.dsk.json"),
};
import powerMacintoshG3NvramPath from "./Data/Power-Macintosh-G3-nvram.bin?url";
import powerMacintoshG3PramPath from "./Data/Power-Macintosh-G3-pram.bin?url";
import powerMacintoshG3BWNvramPath from "./Data/Power-Macintosh-G3-BW-nvram.bin?url";
import powerMacintoshG3BWPramPath from "./Data/Power-Macintosh-G3-BW-pram.bin?url";
import imacG3233NvramPath from "./Data/iMac-G3-233-nvram.bin?url";
import imacG3233PramPath from "./Data/iMac-G3-233-pram.bin?url";
const dppcExtraMachineFiles = new Map([
[
POWER_MACINTOSH_G3_BEIGE,
{
"nvram.bin": powerMacintoshG3NvramPath,
"pram.bin": powerMacintoshG3PramPath,
},
],
[
POWER_MACINTOSH_G3_BW_DPPC,
{
"nvram.bin": powerMacintoshG3BWNvramPath,
"pram.bin": powerMacintoshG3BWPramPath,
},
],
[
IMAC_G3,
{
"nvram.bin": imacG3233NvramPath,
"pram.bin": imacG3233PramPath,
},
],
]);
const MAC_OS_X_10_0_PUBLIC_BETA: SystemDiskDef = {
displayName: "Mac OS X 10.0",
displaySubtitle: "Public Beta",
description:
"First public release of Mac OS X, allowing software developers and early adopters to test a preview of the upcoming next-generation operating system.",
releaseDate: [2000, 9, 13],
customDate: new Date(2000, 8, 13), // Avoid time-bomb
prefetchChunks: [
0, 2, 3, 4, 17, 18, 19, 20, 21, 22, 24, 28, 29, 45, 46, 800, 801, 802,
803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816,
818,
],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
appearance: "Aqua",
generatedSpec: () =>
import("./Data/Mac OS X 10.0 (Public Beta) HD.dsk.json"),
extraMachineFiles: dppcExtraMachineFiles,
notable: true,
infiniteHdSubset: "macosx",
isUnstable: true,
hasDeviceImageHeader: true,
};
const MAC_OS_X_10_0_4: SystemDiskDef = {
displayName: "Mac OS X 10.0",
description:
"Successor to classic Mac OS based on NeXTSTEP. Featured the Aqua interface, Quartz graphics system, the Dock, access to the UNIX command line, Mail and other built-in applications.",
releaseDate: [2001, 3, 24],
prefetchChunks: [
0, 1, 2, 3, 4, 5, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 34, 35, 36,
48, 63, 64, 68, 70, 72, 73, 75, 85, 136, 137, 491, 492, 497, 498, 501,
503, 504, 505, 506, 507, 508, 509, 518, 519, 521, 522, 523, 524, 528,
529, 530, 532, 533, 534, 537, 542, 543, 544, 545, 547, 553, 554, 555,
557, 558, 571, 580, 581, 582, 583, 610, 613, 614, 641, 644, 645, 672,
673, 676, 698, 701, 702, 724, 727, 741, 742, 743, 775, 792, 978, 998,
1047, 1067, 1085, 1092, 1098, 1099, 1122, 1123, 1280, 1281, 1282, 1283,
1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295,
1296, 1297, 1300, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, 3610,
3611, 3742, 3743, 3745, 4497, 5801, 5802, 5803, 5804, 5805, 5806, 5807,
5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5832, 5833,
5834, 5835, 5836, 5837, 5838, 5839, 5840, 5841, 5842, 5843, 5844, 5845,
5846, 5847, 5848, 5849, 5850, 5851, 5852, 5853, 5854, 5855, 5856, 5857,
5858, 5859, 5864, 5873, 5940, 5952, 6006, 6007, 6008, 6009, 6010, 6011,
6024, 6025, 6026, 6034, 6035, 6037, 6042, 6043, 6044, 6045, 6050, 6066,
6071, 6073, 6074, 6075, 6081, 6085, 6090, 6091, 6093, 6095, 6105, 6128,
6134, 6136, 6146, 6147, 6148, 6149, 6160, 6161, 6162, 6163, 6164, 6165,
6166, 6179, 6180, 6181, 6182, 6191, 6192, 6193, 6194, 6195, 6202, 6203,
6206, 6208, 6209, 6211, 6212, 6213, 6221, 6222, 6223, 6224, 6230, 6233,
6235, 6241, 6242, 6244, 6245, 6248, 6249, 6250, 6251, 6252, 6254, 6255,
6256, 6257, 6258, 6261, 6262, 6267, 6268, 6271, 6272, 6275, 6276, 6278,
6279, 6283, 6779, 9146, 9147, 9148, 9149, 16383,
],
preferredMachine: POWER_MACINTOSH_G3_BEIGE,
appearance: "Aqua",
generatedSpec: () => import("./Data/Mac OS X 10.0.4 HD.dsk.json"),
extraMachineFiles: dppcExtraMachineFiles,
notable: true,
infiniteHdSubset: "macosx",
isUnstable: true,
hasDeviceImageHeader: true,
};
const MAC_OS_X_10_1_5: SystemDiskDef = {
displayName: "Mac OS X 10.1",
description:
"Added performance enhancements, CD and DVD burning, DVD playback support, Image Capture and Menu Extras.",
releaseDate: [2001, 9, 29],
prefetchChunks: [
0, 2, 3, 4, 5, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 46, 48, 49, 50,
51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69,
70, 71, 73, 74, 75, 77, 78, 102, 107, 112, 116, 117, 119, 120, 121, 316,
322, 334, 339, 348, 349, 357, 358, 359, 360, 362, 363, 364, 365, 366,
367, 380, 382, 383, 385, 388, 389, 396, 399, 403, 404, 408, 409, 412,
419, 423, 428, 429, 431, 434, 436, 497, 498, 526, 527, 540, 541, 542,
623, 648, 653, 660, 661, 662, 663, 664, 665, 681, 685, 695, 696, 795,
796, 799, 803, 804, 805, 807, 820, 821, 822, 823, 824, 826, 827, 828,
829, 831, 836, 837, 838, 839, 842, 848, 849, 851, 852, 853, 855, 856,
857, 858, 872, 873, 877, 886, 887, 892, 893, 894, 900, 901, 919, 934,
943, 953, 954, 975, 976, 977, 978, 979, 988, 998, 999, 1020, 1021, 1025,
1073, 1074, 1203, 1204, 1206, 1238, 1276, 1281, 1282, 1285, 1300, 1301,
1302, 1307, 1313, 1314, 1318, 1319, 1320, 1324, 1394, 1395, 1396, 1401,
1403, 1404, 1405, 1409, 1410, 1411, 1412, 1414, 1422, 1423, 1434, 1442,