aboutsummaryrefslogtreecommitdiff
path: root/SrcShared/EmDevice.cpp
blob: 779b1a9af1f283c10560bc983ae06e94a395737a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
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
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
/* -*- mode: C++; tab-width: 4 -*- */
/* ===================================================================== *\
	Copyright (c) 1999-2001 Palm, Inc. or its subsidiaries.
	All rights reserved.

	This file is part of the Palm OS Emulator.

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.
\* ===================================================================== */

#include "EmCommon.h"
#include "EmDevice.h"

/*
	This file controls the creation of a new device in the Palm OS
	Emulator.  In order to add a new device to the set of supported
	devices:

	* Add a new kDeviceFoo value to DeviceType.

	* Add information about the new device to the kDeviceInfo array.

	* Define and add a sub-class of EmRegs to describe the hardware
	  registers for the device (e.g., EmRegsEZPalmV).  This sub-class
	  can be a typedef of another sub-class if the hardware is the
	  same (e.g., EmRegsEZPalmVx).

	* Define and add any other EmRegs sub-classes as needed if the
	  device has any special hardware needs (e.g., EmRegsUSBVisor).

	* Add a new "case" statement in CreateRegs that creates the
	  appropriate EmRegs sub-classes.

	* If your needs are extensive and creating a sub-class of EmRegs
	  isn't sufficient, then consider creating a new EmBankFoo and
	  managing that in EmMemory.cpp along with all the other EmBankFoos.

	* Modify SupportsROM to make sure that your device appears on the
	  device list when your ROM is selected, and try to make sure that
	  it does not appear for other ROMs.  If ROMs for this device can
	  be identified via companyID and halID fields in the card header,
	  then you don't need to do anything here.
*/

#include "Platform.h"			// _stricmp

#include "EmBankRegs.h"			// AddSubBank
#include "EmROMReader.h"		// EmROMReader
#include "EmStreamFile.h"		// EmStreamFile
#include "Miscellaneous.h"		// StMemory

#include "PalmPack.h"
#define NON_PORTABLE
	#include "HwrMiscFlags.h"		// hwrMiscFlagIDTouchdown, etc.

	#ifndef hwrMiscFlagIDPalmIIIc
	#define	hwrMiscFlagIDPalmIIIc			(hwrMiscFlagID4 | hwrMiscFlagID1)
	#endif

	// The m100 ID has changed
	#undef hwrMiscFlagIDm100
	#define hwrMiscFlagIDm100	(hwrMiscFlagID3 | hwrMiscFlagID1)

#undef NON_PORTABLE
#include "PalmPackPop.h"

#include "EmCPU68K.h"
#include "EmCPUARM.h"

#include "EmRegs328Pilot.h"
#include "EmRegs328PalmPilot.h"
#include "EmRegs328PalmIII.h"
#include "EmRegs328PalmVII.h"
#include "EmRegs328Symbol1700.h"

#include "EmRegsEZPalmIIIc.h"
#include "EmRegsEZPalmIIIe.h"
#include "EmRegsEZPalmIIIx.h"
#include "EmRegsEZPalmV.h"
#include "EmRegsEZPalmVx.h"
#include "EmRegsEZPalmVII.h"
#include "EmRegsEZPalmVIIx.h"
#include "EmRegsEZPalmM100.h"
#include "EmRegsEZVisor.h"
#include "EmRegsEZTemp.h"

#include "EmRegsSZTemp.h"

#include "EmRegsVZPalmM500.h"
#include "EmRegsVZPalmM505.h"
#include "EmRegsVZVisorPrism.h"
#include "EmRegsVZVisorPlatinum.h"
#include "EmRegsVZVisorEdge.h"
#include "EmRegsVZTemp.h"

#include "EmRegsASICSymbol1700.h"
#include "EmRegsFrameBuffer.h"
#include "EmRegsPLDPalmVIIEZ.h"
#include "EmRegsSED1375.h"
#include "EmRegsSED1376.h"
#include "EmRegsUSBPhilipsPDIUSBD12.h"
#include "EmRegsUSBVisor.h"

#include "EmTRG.h"

#include "EmRegsMediaQ11xx.h"


enum	// DeviceType
{
	kDeviceUnspecified	= 0,
	kDevicePilot,
	kDevicePalmPilot,
	kDevicePalmIII,
	kDevicePalmIIIc,
	kDevicePalmIIIe,
	kDevicePalmIIIx,
	kDevicePalmV,
	kDevicePalmVx,
	kDevicePalmVII,
	kDevicePalmVIIEZ,
	kDevicePalmVIIx,
	kDevicePalmM100,
	kDevicePalmM125,
	kDevicePalmM130,
	kDevicePalmM500,
	kDevicePalmM505,
	kDevicePalmM515,
	kDevicePalmI705,
	kDeviceARMRef,
	kDeviceSymbol1500,
	kDeviceSymbol1700,
	kDeviceSymbol1740,
	kDeviceTRGpro,
	kDeviceHandEra330,
	kDeviceVisor,
	kDeviceVisorPrism,
	kDeviceVisorPlatinum,
	kDeviceVisorEdge,
	kDeviceLast
};

struct DeviceInfo
{
	int			fDeviceID;

	const char*	fDeviceMenuName;	// This string appears in the Device menu.

	const char*	fDeviceNames[8];	// These strings can be specified on the command line
									// to specify that this device be emulated.  The first
									// string in the array is also the "preferred" string,
									// in that it is used to identify the device in the
									// Preferences and Session files.

	uint32		fFlags;				// One or more of the flags below.

	RAMSizeType	fMinRAMSize;		// Minimum RAM size (in K).  Used to prune back the
									// RAM size menu.

	long		fHardwareID;		// Some devices have a hardware ID they report via
									// hardware register munging.

	long		fHardwareSubID;		// Some devices have a hardware sub-ID they report via
									// hardware registr munging.

	struct
	{
		uint32		fCompanyID;		// The "companyID" field in a v5 CardHeader.  This field
									// is used to identify which ROMs can run on which devices.
									// Set it to zero if the ROM for your device doesn't have
									// a v5 CardHeader.

		uint32		fHalID;			// The "halID" field in a v5 CardHeader.  This field
									// is used to identify which ROMs can run on which devices.
									// Set it to zero if the ROM for your device doesn't have
									// a v5 CardHeader.

	}			fCardHeaderInfo[1];	// It's possible that in the future, more than one HAL
									// could properly execute on this device.  Make this an
									// array so that we can add more than one HAL ID.
};


// (None of these values are (is?) exposed, so they can be freely reordered.)

static const uint32	kSupports68328			= 0x00000001;
static const uint32	kSupports68EZ328		= 0x00000002;
static const uint32	kSupports68VZ328		= 0x00000004;
static const uint32	kSupports68SZ328		= 0x00000008;
static const uint32	kSupportsARM			= 0x00000010;

static const uint32	kHasFlash				= 0x00000100;

static const long	hwrMiscFlagIDNone		= 0xFF;
static const long	hwrMiscFlagExtSubIDNone	= 0xFF;

#define UNSUPPORTED			0


/* Miscellaneous symbols used to discriminate between ROMs. Do not assume that
   these are meant to convey actual ownership or documented interfaces. */
   
#define PALM_MANUF			"Palm Computing"
#define HANDSPRING_MANUF	"Handspring, Inc."
#define SYMBOL_DB			"ScanMgr"
#define SYMBOL_1500_DB		"ResetApp"			// But not available in 3.5 version of 1500 ROM
#define SYMBOL_1700_DB		"ResetAppScan"		// But now also available in 3.5 version of 1500 ROM
#define SYMBOL_1740_DB		"S24PowerDown"		// Only on 1740s, which have the Spectrum 24 wireless
#define PALM_VII_DB			"WMessaging"
#define PALM_VII_IF1_DB		"RAM NetIF"
#define PALM_VII_IF2_DB		"RAM NetIFRM"
#define PALM_VII_EZ_NEW_DB	"TuneUp"
#define PALM_VIIX_DB		"iMessenger"
#define PALM_m100_DB		"cclkPalmClock"


// Table used to describe the various hardware devices we support.
// Some good summary background information is at:
//
//	<http://www.palmos.com/dev/tech/hardware/compare.html>

static const DeviceInfo kDeviceInfo[] =
{
	// ===== Palm Devices =====
	{
		kDevicePilot, "Pilot",
		{ "Pilot", "Pilot1000", "Pilot5000", "TD", "Touchdown" },
		kSupports68328, 128, hwrMiscFlagIDTouchdown, hwrMiscFlagExtSubIDNone,
	},
	{
		kDevicePalmPilot, "PalmPilot",
		{ "PalmPilot", "PalmPilotPersonal", "PalmPilotProfessional", "Striker" },
		kSupports68328, 128, hwrMiscFlagIDPalmPilot, hwrMiscFlagExtSubIDNone,
	},
	{
		kDevicePalmIII, "Palm III",
		{ "PalmIII", "Rocky" },
		kSupports68328 + kHasFlash, 512, hwrMiscFlagIDRocky, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'rcky' }}
	},
	{
		kDevicePalmIIIc, "Palm IIIc",
		{ "PalmIIIc", "Austin", "ColorDevice" },
		kSupports68EZ328 + kHasFlash, 8192, hwrMiscFlagIDPalmIIIc, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'astn' }}
	},
	{
		kDevicePalmIIIe, "Palm IIIe",
		{ "PalmIIIe", "Robinson" },
		kSupports68EZ328, 2048, hwrMiscFlagIDBrad, hwrMiscFlagExtSubIDBrad,
	},
	{
		kDevicePalmIIIx, "Palm IIIx",
		{ "PalmIIIx", "Brad" },
		kSupports68EZ328 + kHasFlash, 4096, hwrMiscFlagIDBrad, hwrMiscFlagExtSubIDBrad,
		{{ 'palm', 'sumo' }}
	},
	{
		kDevicePalmV, "Palm V",
		{ "PalmV", "Razor", "Sumo" },
		kSupports68EZ328 + kHasFlash, 2048, hwrMiscFlagIDSumo, hwrMiscFlagExtSubIDSumo,
		{{ 'palm', 'sumo' }}
	},
	{
		kDevicePalmVx, "Palm Vx",
		{ "PalmVx", "Cobra" },
		kSupports68EZ328 + kHasFlash, 8192, hwrMiscFlagIDSumo, hwrMiscFlagExtSubIDCobra,
		{{ 'palm', 'sumo' }}
	},
	{
		kDevicePalmVII, "Palm VII",
		{ "PalmVII", "Jerry", "Eleven" },
		kSupports68328 + kHasFlash, 2048, hwrMiscFlagIDJerry, hwrMiscFlagExtSubIDNone,
	},
	{
		kDevicePalmVIIEZ, "Palm VII (EZ)",
		{ "PalmVIIEZ", "Bonanza" },
		kSupports68EZ328 + kHasFlash, 2048, hwrMiscFlagIDJerryEZ, 0,
										// sub-id *should* be hwrMiscFlagExtSubIDNone, but
										// a bug in Rangoon (OS 3.5 for Palm VII EZ) has it
										// accidentally looking for and using the sub-id. In
										// order to get the hard keys to work, we need to
										// return zero here.
	},
	{
		kDevicePalmVIIx, "Palm VIIx",
		{ "PalmVIIx", "Octopus" },
		kSupports68EZ328 + kHasFlash, 8192, hwrMiscFlagIDJerryEZ, hwrMiscFlagExtSubIDBrad,
										// David Mai says that he *guesses* that the sub-id is zero
	},
	{
		kDevicePalmM100, "Palm m100",
		{ "PalmM100", "m100", "Calvin" },
		kSupports68EZ328, 2048, hwrMiscFlagIDm100, hwrMiscFlagExtSubIDBrad,
		{{ 'palm', 'clvn' }}
	},
	{
		kDevicePalmM125, "Palm m125",
		{ "PalmM125", "m120", "m125", "m110", "m115", "JV", "Stu" },
		kSupports68VZ328 + kHasFlash, 2048, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'vstu' }}
	},
	{
		kDevicePalmM130, "Palm m130",
		{ "PalmM130", "m130", "Hobbes", "PalmM130" },
		kSupports68VZ328, 8192, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'vhbs' }}
	},
	{
		kDevicePalmM500, "Palm m500",
		{ "PalmM500", "m500", "Tornado" },
		kSupports68VZ328 + kHasFlash, 8192, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'vtrn' }}
	},
	{
		kDevicePalmM505, "Palm m505",
		{ "PalmM505", "m505", "EmeraldCity", "VZDevice" },
		kSupports68VZ328 + kHasFlash, 8192, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'ecty' }}
	},
	{
		kDevicePalmM515, "Palm m515",
		{ "PalmM515", "m515", "PalmM525", "m525", "Lighthouse", "GatorReef" },
		kSupports68VZ328 + kHasFlash, 16384, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'vlit' }}
	},
	{
		kDevicePalmI705, "Palm i705",
		{ "PalmI705", "i705", "Everest", "PalmI705" },
		kSupports68VZ328 + kHasFlash, 8192, hwrMiscFlagIDNone, hwrMiscFlagExtSubIDNone,
		{{ 'palm', 'skyw' }}
	},
	{
		kDeviceARMRef, "ARM Ref",
		{ "ARMRef" },
		kSupportsARM, 0, 0
	},

	// ===== Symbol devices =====
	{
		kDeviceSymbol1500, "Symbol 1500",
		{ "Symbol1500" },
		kSupports68328 + kHasFlash, 2048, hwrMiscFlagIDRocky, hwrMiscFlagExtSubIDNone,
	},
	{
		kDeviceSymbol1700, "Symbol 1700",
		{ "Symbol1700" },
		kSupports68328 + kHasFlash, 2048, hwrMiscFlagIDRocky, hwrMiscFlagExtSubIDNone,
	},
	{
		kDeviceSymbol1740, "Symbol 1740",
		{ "Symbol1740" },
		kSupports68328 + kHasFlash, 2048, hwrMiscFlagIDRocky, hwrMiscFlagExtSubIDNone,
	},

	// ===== TRG/HandEra devices =====

	{
		kDeviceTRGpro, "TRGpro",
		{ "TRGpro" },
		kSupports68EZ328 + kHasFlash, 8192, hwrOEMCompanyIDTRG, hwrTRGproID,
		{{ 'trgp', 'trg1' }}
	},

	{
		kDeviceHandEra330, "HandEra 330",
		{ "HandEra330" },
		kSupports68VZ328 + kHasFlash, 8192, hwrOEMCompanyIDTRG, hwrTRGproID + 1,
		{{ 'trgp', 'trg2' }}
	},

	// ===== Handspring devices =====
	{
		kDeviceVisor, "Visor",
		{ "Visor", "Lego" },
		kSupports68EZ328, 2048, halModelIDLego, 0,	// Hardware ID for first Visor
	},
	{
		kDeviceVisorPlatinum, "Visor Platinum",
		{ "VisorPlatinum" },
		kSupports68VZ328, 8192, halModelIDVisorPlatinum, 0
	},
	{
		kDeviceVisorPrism, "Visor Prism",
		{ "VisorPrism" },
		kSupports68VZ328, 8192, halModelIDVisorPrism, 0
	},
	{
		kDeviceVisorEdge, "Visor Edge",
		{ "VisorEdge" },
		kSupports68VZ328, 8192, halModelIDVisorEdge, 0
	}
};


/***********************************************************************
 *
 * FUNCTION:    EmDevice::EmDevice
 *
 * DESCRIPTION: Constructors
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Nothing
 *
 ***********************************************************************/

EmDevice::EmDevice (void) :
	fDeviceID (kDeviceUnspecified)
{
}


EmDevice::EmDevice (int id) :
	fDeviceID (id)
{
}


EmDevice::EmDevice (const char* s) :
	fDeviceID (this->GetDeviceID (s))
{
}


EmDevice::EmDevice (const string& s) :
	fDeviceID (this->GetDeviceID (s.c_str ()))
{
}


EmDevice::EmDevice (const EmDevice& other) :
	fDeviceID (other.fDeviceID)
{
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::~EmDevice
 *
 * DESCRIPTION: Destructor
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Nothing
 *
 ***********************************************************************/

EmDevice::~EmDevice (void)
{
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::operator==
 * FUNCTION:    EmDevice::operator!=
 *
 * DESCRIPTION: Destructor
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Nothing
 *
 ***********************************************************************/

bool EmDevice::operator== (const EmDevice& other) const
{
	return fDeviceID == other.fDeviceID;
}


bool EmDevice::operator!= (const EmDevice& other) const
{
	return fDeviceID != other.fDeviceID;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::Supported
 *
 * DESCRIPTION: Returns whether or not this EmDevice represents a device
 *				we currently support emulating.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::Supported (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return info != NULL;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::Supports68328
 *
 * DESCRIPTION: Returns whether or not this device is based on the
 *				MC68328.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::Supports68328 (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kSupports68328) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::Supports68EZ328
 *
 * DESCRIPTION: Returns whether or not this device is based on the
 *				MC68EZ328.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::Supports68EZ328 (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kSupports68EZ328) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::Supports68VZ328
 *
 * DESCRIPTION: Returns whether or not this device is based on the
 *				MC68VZ328.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::Supports68VZ328 (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kSupports68VZ328) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::Supports68SZ328
 *
 * DESCRIPTION: Returns whether or not this device is based on the
 *				MC68SZ328.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::Supports68SZ328 (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kSupports68SZ328) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::SupportsARM
 *
 * DESCRIPTION: Returns whether or not this device is based on the
 *				MC68VZ328.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::SupportsARM (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kSupportsARM) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::PrismPlatinumEdgeHack
 *
 * DESCRIPTION: Handspring's Prism, Platinum, and Edge have card headers
 *				saying they run on EZ's when they really run on VZ's.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::PrismPlatinumEdgeHack (void) const
{
	return	fDeviceID == kDeviceVisorPrism ||
			fDeviceID == kDeviceVisorPlatinum ||
			fDeviceID == kDeviceVisorEdge;
}


/***********************************************************************
 *
 * FUNCTION:	EmDevice::EdgeHack
 *
 * DESCRIPTION:	Handspring's Edge uses bit 3 of port D for powered-cradle
 *				detection, so we need to apply a few hacks.
 *
 * PARAMETERS:	None
 *
 * RETURNED:	True if so.
 *
 ***********************************************************************/

Bool EmDevice::EdgeHack (void) const
{
	return fDeviceID == kDeviceVisorEdge;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::SupportsROM
 *
 * DESCRIPTION: Returns whether or not this device can support the
 *				execution of a particular ROM.
 *
 * PARAMETERS:  A reference to an EmROMReader object. Hopefully one
 *				that has successfully acquired the details of a ROM.
 *
 * RETURNED:    True if ROM is supported by device.
 *
 ***********************************************************************/

Bool EmDevice::SupportsROM (const EmFileRef& romFileRef) const
{
	// Load the ROM image into memory.

	EmStreamFile	romStream (romFileRef, kOpenExistingForRead);
	StMemory    	romImage (romStream.GetLength ());

	romStream.GetBytes (romImage.Get (), romStream.GetLength ());

	// Create a ROM Reader on the ROM image.

	EmROMReader reader (romImage.Get (), romStream.GetLength ());

	// Grovel over the ROM.

	if (reader.AcquireCardHeader ())
	{
		UInt16	version = reader.GetCardVersion ();

		if (version < 5)
		{
			reader.AcquireROMHeap ();
			reader.AcquireDatabases ();
			reader.AcquireFeatures ();
			reader.AcquireSplashDB ();
		}
	}

	return this->SupportsROM (reader);
}


Bool EmDevice::SupportsROM (const EmROMReader& ROM) const
{
	/* If the ROM is recent enough, use the embedded hardware ID information
	   to determine whether it will work with this device */

	if (ROM.GetCardVersion () >= 5)
	{
		const DeviceInfo*	info = this->GetDeviceInfo ();

		for (size_t ii = 0; ii < countof (info->fCardHeaderInfo); ++ii)
		{
			if (info->fCardHeaderInfo[ii].fCompanyID &&
				info->fCardHeaderInfo[ii].fHalID &&
				info->fCardHeaderInfo[ii].fCompanyID == ROM.GetCompanyID () &&
				info->fCardHeaderInfo[ii].fHalID == ROM.GetHalID ())
			{
				return true;
			}
		}

		return false;
	}

	/* Otherwise, we will use miscellaneous pieces of data to heuristically
	   discriminate between ROMs. Do not assume that any of these tests are
	   meant to convey ownership or documented interfaces. */

	bool is7		= ROM.ContainsDB (PALM_VII_IF1_DB) || ROM.ContainsDB (PALM_VII_IF2_DB);
	bool is328		= (ROM.GetCardVersion () <= 2) || ROM.GetFlag328 ();
	bool isColor	= ROM.GetSplashChunk () && (ROM.IsBitmapColor (*ROM.GetSplashChunk (), true) == 1);

	if (Supports68328 () && !is328)
		return false;
	else if (Supports68EZ328 () && !ROM.GetFlagEZ ())
		return false;
	else if (Supports68VZ328 () && !ROM.GetFlagVZ ())
	{
		/*	Make a hack for the Prism, Platinum and Edge below since
			Handspring seems to report the EZ bit in their ROMs. */

		if (!this->PrismPlatinumEdgeHack ())
		{
			return false;
		}
	}

	switch (fDeviceID)
	{
		case kDeviceUnspecified:
			return false;
			break;

		case kDevicePilot:
			if ((ROM.Version () < 0x020000) &&
				(ROM.GetCardManufacturer () == PALM_MANUF)
				)
				return true;
			break;

		case kDevicePalmPilot:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () >= 0x020000) &&
				(ROM.Version () < 0x030000)
				)
				return true;
			break;

		case kDevicePalmIII:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () >= 0x030000) &&
				!ROM.ContainsDB (SYMBOL_DB) &&
				!is7
				)
				return true;
			break;

		case kDevicePalmIIIc:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				!ROM.ContainsDB (PALM_m100_DB) &&
				!is7 &&
				isColor
				)
				return true;
			break;

		case kDevicePalmIIIe:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				!ROM.ContainsDB (PALM_m100_DB) &&
				!is7 &&
				!isColor &&
				(ROM.Version () == 0x030100)
				)
				return true;
			break;

		case kDevicePalmIIIx:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				!ROM.ContainsDB (PALM_m100_DB) &&
				!is7 &&
				!isColor
				)
				return true;
			break;

		case kDevicePalmV:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				!ROM.ContainsDB (PALM_m100_DB) &&
				!is7 &&
				!isColor
				)
				return true;
			break;

		case kDevicePalmVx:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				!ROM.ContainsDB (PALM_m100_DB) &&
				!is7 &&
				!isColor &&
				(ROM.Version () >= 0x030300)
				)
				return true;
			break;

		case kDevicePalmVII:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () >= 0x030000) &&
				!ROM.ContainsDB (SYMBOL_DB) &&
				is7
				)
				return true;
			break;

		case kDevicePalmVIIEZ:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				is7 &&
				(!ROM.ContainsDB (PALM_VIIX_DB) ||
				 ROM.ContainsDB (PALM_VII_EZ_NEW_DB)) &&
				!isColor
				)
				return true;
			break;

		case kDevicePalmVIIx:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				is7 &&
				ROM.ContainsDB (PALM_VIIX_DB) &&
				!ROM.ContainsDB (PALM_VII_EZ_NEW_DB) &&
				!isColor
				)
				return true;
			break;

		case kDevicePalmM100:
			if (ROM.ContainsDB (PALM_m100_DB))
				return true;
			break;

		case kDeviceSymbol1500:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () < 0x030500) &&
				ROM.ContainsDB (SYMBOL_1500_DB) &&
				!ROM.ContainsDB (SYMBOL_1700_DB) &&
				!ROM.ContainsDB (SYMBOL_1740_DB)
				)
				return true;
			break;

		case kDeviceSymbol1700:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () < 0x030500) &&
				!ROM.ContainsDB (SYMBOL_1500_DB) &&
				ROM.ContainsDB (SYMBOL_1700_DB) &&
				!ROM.ContainsDB (SYMBOL_1740_DB)
				)
				return true;
			break;

		case kDeviceSymbol1740:
			if ((ROM.GetCardManufacturer () == PALM_MANUF) &&
				(ROM.Version () < 0x030500) &&
				!ROM.ContainsDB (SYMBOL_1500_DB) &&
				ROM.ContainsDB (SYMBOL_1700_DB) &&
				ROM.ContainsDB (SYMBOL_1740_DB)
				)
				return true;
			break;

		case kDeviceTRGpro:
		case kDeviceHandEra330:
			if (ROM.GetCardManufacturer () == TRGPRO_MANUF)
				return true;
			break;

		case kDeviceVisor:
			if ((ROM.GetCardManufacturer () == HANDSPRING_MANUF) &&
				(ROM.Version () == 0x030100)
				)
				return true;
			break;

		case kDeviceVisorPrism:
			if ((ROM.GetCardManufacturer () == HANDSPRING_MANUF) &&
				(ROM.Version () >= 0x030500)
				)
				return true;
			break;

		case kDeviceVisorPlatinum:
			if ((ROM.GetCardManufacturer () == HANDSPRING_MANUF) &&
				(ROM.Version () >= 0x030500)
				)
				return true;
			break;

		case kDeviceVisorEdge:
			if ((ROM.GetCardManufacturer () == HANDSPRING_MANUF) &&
				(ROM.Version () >= 0x030500)
				)
				return true;
			break;

		case kDeviceLast:
			EmAssert (false);
			break;

		default:
			break;
	}

	return false;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::CreateCPU
 *
 * DESCRIPTION: Create the CPU object.
 *
 * PARAMETERS:  session - EmSession object used to initialize the CPU
 *					object.
 *
 * RETURNED:    Pointer to the created object.  Caller is responsible
 *				for destroying the object when it's done with it.
 *
 ***********************************************************************/

EmCPU* EmDevice::CreateCPU (EmSession* session) const
{
	EmCPU*	result = NULL;

	if (this->Supports68328 () ||
		this->Supports68EZ328 () ||
		this->Supports68VZ328 () ||
		this->Supports68SZ328 ())
	{
		result = new EmCPU68K (session);
	}
	else if (this->SupportsARM ())
	{
		result = new EmCPUARM (session);
	}

	EmAssert (result);

	return result;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::CreateRegs
 *
 * DESCRIPTION: Create the register object that manages the Dragonball
 *				(or derivative) hardware registers.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Pointer to the created object.  Caller is responsible
 *				for destroying the object when it's done with it.
 *
 ***********************************************************************/

void EmDevice::CreateRegs (void) const
{
	switch (fDeviceID)
	{
		case kDevicePilot:
			EmBankRegs::AddSubBank (new EmRegs328Pilot);
			break;

		case kDevicePalmPilot:
			EmBankRegs::AddSubBank (new EmRegs328PalmPilot);
			break;

		case kDevicePalmIII:
			EmBankRegs::AddSubBank (new EmRegs328PalmIII);
			break;

		case kDevicePalmIIIc:
			EmBankRegs::AddSubBank (new EmRegsEZPalmIIIc);
			EmBankRegs::AddSubBank (new EmRegsSED1375 ((emuptr) sed1375RegsAddr, sed1375BaseAddress));
			EmBankRegs::AddSubBank (new EmRegsFrameBuffer (sed1375BaseAddress, sed1375VideoMemSize));
			break;

		case kDevicePalmIIIe:
			EmBankRegs::AddSubBank (new EmRegsEZPalmIIIe);
			break;

		case kDevicePalmIIIx:
			EmBankRegs::AddSubBank (new EmRegsEZPalmIIIx);
			break;

		case kDevicePalmV:
			EmBankRegs::AddSubBank (new EmRegsEZPalmV);
			break;

		case kDevicePalmVx:
			EmBankRegs::AddSubBank (new EmRegsEZPalmVx);
			break;

		case kDevicePalmVII:
			EmBankRegs::AddSubBank (new EmRegs328PalmVII);
			break;

		case kDevicePalmVIIEZ:
			EmBankRegs::AddSubBank (new EmRegsEZPalmVII);
			EmBankRegs::AddSubBank (new EmRegsPLDPalmVIIEZ);
			break;

		case kDevicePalmVIIx:
			EmBankRegs::AddSubBank (new EmRegsEZPalmVIIx);
			EmBankRegs::AddSubBank (new EmRegsPLDPalmVIIEZ);
			break;

		case kDevicePalmM100:
			EmBankRegs::AddSubBank (new EmRegsEZPalmM100);
			break;

		case kDevicePalmM125:
			EmBankRegs::AddSubBank (new EmRegsVZPalmM125);
			EmBankRegs::AddSubBank (new EmRegsUSBPhilipsPDIUSBD12 (0x1F000000));
			break;

		case kDevicePalmM130:
			EmBankRegs::AddSubBank (new EmRegsVZPalmM130);
			EmBankRegs::AddSubBank (new EmRegsMediaQ11xx (MMIO_BASE, T_BASE));
			EmBankRegs::AddSubBank (new EmRegsFrameBuffer (T_BASE, MMIO_OFFSET));
			break;

		case kDevicePalmM500:
			EmBankRegs::AddSubBank (new EmRegsVZPalmM500);
			EmBankRegs::AddSubBank (new EmRegsUSBPhilipsPDIUSBD12 (0x10400000));
			break;

		case kDevicePalmM505:
			EmBankRegs::AddSubBank (new EmRegsVZPalmM505);
			EmBankRegs::AddSubBank (new EmRegsSED1376PalmGeneric (sed1376RegsAddr, sed1376VideoMemStart));
			EmBankRegs::AddSubBank (new EmRegsFrameBuffer (sed1376VideoMemStart, sed1376VideoMemSize));
			EmBankRegs::AddSubBank (new EmRegsUSBPhilipsPDIUSBD12 (0x10400000));
			break;

		case kDevicePalmM515:
			EmBankRegs::AddSubBank (new EmRegsVZPalmM505);
			EmBankRegs::AddSubBank (new EmRegsSED1376PalmGeneric (sed1376RegsAddr, sed1376VideoMemStart));
			EmBankRegs::AddSubBank (new EmRegsFrameBuffer (sed1376VideoMemStart, sed1376VideoMemSize));
			EmBankRegs::AddSubBank (new EmRegsUSBPhilipsPDIUSBD12 (0x10400000));
			break;

		case kDevicePalmI705:
			EmBankRegs::AddSubBank (new EmRegsVZPalmI705);
			EmBankRegs::AddSubBank (new EmRegsPLDPalmI705 (0x11000000));
			EmBankRegs::AddSubBank (new EmRegsUSBPhilipsPDIUSBD12 (0x1F000000));
			break;

		case kDeviceARMRef:
			break;

		case kDeviceSymbol1500:
			EmBankRegs::AddSubBank (new EmRegs328PalmIII);
			break;

		case kDeviceSymbol1700:
			EmBankRegs::AddSubBank (new EmRegs328Symbol1700);
			EmBankRegs::AddSubBank (new EmRegsASICSymbol1700);
			break;

		case kDeviceSymbol1740:
			EmBankRegs::AddSubBank (new EmRegs328Symbol1700);
			EmBankRegs::AddSubBank (new EmRegsASICSymbol1700);
			break;

		case kDeviceTRGpro:
			OEMCreateTRGRegObjs (hwrTRGproID);
			break;

 		case kDeviceHandEra330:
			OEMCreateTRGRegObjs (hwrTRGproID + 1);
			break;

		case kDeviceVisor:
			EmBankRegs::AddSubBank (new EmRegsEZVisor);
			EmBankRegs::AddSubBank (new EmRegsUSBVisor);
			break;

		case kDeviceVisorPrism:
			EmBankRegs::AddSubBank (new EmRegsVZVisorPrism);
			EmBankRegs::AddSubBank (new EmRegsSED1376VisorPrism (0x11800000, 0x11820000));
			EmBankRegs::AddSubBank (new EmRegsFrameBuffer (0x11820000, 80 * 1024L));
			EmBankRegs::AddSubBank (new EmRegsUSBVisor);
			break;

		case kDeviceVisorPlatinum:
			EmBankRegs::AddSubBank (new EmRegsVZVisorPlatinum);
			EmBankRegs::AddSubBank (new EmRegsUSBVisor);
			break;

		case kDeviceVisorEdge:
			EmBankRegs::AddSubBank (new EmRegsVZVisorEdge);
			EmBankRegs::AddSubBank (new EmRegsUSBVisor);
			break;

		default:
			break;
	}

	EmHAL::EnsureCoverage ();
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::HasFlash
 *
 * DESCRIPTION: Returns whether or not this device uses Flash RAM.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    True if so.
 *
 ***********************************************************************/

Bool EmDevice::HasFlash (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return (info->fFlags & kHasFlash) != 0;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::MinRAMSize
 *
 * DESCRIPTION: Returns the minimum RAM size that this device should
 *				be configured with.  Some devices can't operate lower
 *				than the levels they ship with, as they run out of
 *				memory and crash.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Minimum RAM size, in K (so 1024 == 1 Meg).
 *
 ***********************************************************************/

RAMSizeType EmDevice::MinRAMSize (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();
	return info->fMinRAMSize;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::HardwareID
 *
 * DESCRIPTION: Returns the hardware ID of this device.  This ID is the
 *				one that eventually gets put into GHwrMiscGFlags by
 *				HwrIdentifyFeatures.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    The device's hardware ID.
 *
 ***********************************************************************/

long EmDevice::HardwareID (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();

//	EmAssert (info->fHardwareID != hwrMiscFlagIDNone);

	return info->fHardwareID;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::HardwareSubID
 *
 * DESCRIPTION: Returns the hardware ID of this device.  This ID is the
 *				one that eventually gets put into GHwrMiscGFlags by
 *				HwrIdentifyFeatures.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    The device's hardware ID.
 *
 ***********************************************************************/

long EmDevice::HardwareSubID (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();

	EmAssert (info->fHardwareSubID != hwrMiscFlagExtSubIDNone);

	return info->fHardwareSubID;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetMenuString
 *
 * DESCRIPTION: .
 *
 * PARAMETERS:  None
 *
 * RETURNED:    .
 *
 ***********************************************************************/

string EmDevice::GetMenuString (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();

	return string (info->fDeviceMenuName);
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetIDString
 *
 * DESCRIPTION: .
 *
 * PARAMETERS:  None
 *
 * RETURNED:    .
 *
 ***********************************************************************/

string EmDevice::GetIDString (void) const
{
	const DeviceInfo*	info = this->GetDeviceInfo ();

	return string (info->fDeviceNames[0]);
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetIDStrings
 *
 * DESCRIPTION: .
 *
 * PARAMETERS:  None
 *
 * RETURNED:    .
 *
 ***********************************************************************/

StringList EmDevice::GetIDStrings (void) const
{
	StringList			result;

	const DeviceInfo*	info = this->GetDeviceInfo ();

	size_t ii = 0;
	while (ii < countof (info->fDeviceNames) && info->fDeviceNames[ii])
	{
		result.push_back (string (info->fDeviceNames[ii]));
		++ii;
	}

	return result;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetDeviceList
 *
 * DESCRIPTION: Return the list of devices Poser emulates.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Collection containing the results.
 *
 ***********************************************************************/

EmDeviceList EmDevice::GetDeviceList (void)
{
	EmDeviceList	result;

	for (size_t ii = 0; ii < countof (kDeviceInfo); ++ii)
	{
		const DeviceInfo*	info = &kDeviceInfo[ii];

		result.push_back (EmDevice (info->fDeviceID));
	}

	return result;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetDeviceInfo
 *
 * DESCRIPTION: Look up and return the DeviceInfo block for the
 *				managed device.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Const pointer to the DeviceInfo block.
 *
 ***********************************************************************/

const DeviceInfo* EmDevice::GetDeviceInfo (void) const
{
	for (size_t ii = 0; ii < countof (kDeviceInfo); ++ii)
	{
		const DeviceInfo*	info = &kDeviceInfo[ii];

		if (info->fDeviceID == fDeviceID)
			return info;
	}

	return NULL;
}


/***********************************************************************
 *
 * FUNCTION:    EmDevice::GetDeviceID
 *
 * DESCRIPTION: Look up and return the unique ID for the
 *				managed device.
 *
 * PARAMETERS:  s - a string identifying the device.  Can be any of the
 *					strings in the fDeviceNames in the DeviceInfo array.
 *					The comparison to this string is case-insensitive.
 *
 * RETURNED:    The device's unique ID.  kDeviceUnspecified if a match
 *				could not be found.
 *
 ***********************************************************************/

int EmDevice::GetDeviceID (const char* s) const
{
	// Iterate over each entry in the kDeviceInfo array.

	for (size_t ii = 0; ii < countof (kDeviceInfo); ++ii)
	{
		const DeviceInfo*	info = &kDeviceInfo[ii];

		// Iterate over each string in the fDeviceNames array.

		size_t jj = 0;
		while (jj < countof (info->fDeviceNames) && info->fDeviceNames[jj])
		{
			// If we find a match, return the unique ID.

			if (_stricmp (info->fDeviceNames[jj], s) == 0)
			{
				return info->fDeviceID;
			}

			++jj;
		}
	}

	// No match.

	return kDeviceUnspecified;
}