summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/macadb.c
blob: 98c4791f2229318b826bc562d737729729b7b521 (plain) (blame)
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
/***************************************************************************

  macadb.c - handles various aspects of ADB on the Mac.
 
***************************************************************************/

#include "emu.h"
#include "includes/mac.h"

#define LOG_ADB				0
#define LOG_ADB_MCU_CMD		0
#define LOG_ADB_TALK_LISTEN 0

// ADB states
#define ADB_STATE_NEW_COMMAND	(0)
#define ADB_STATE_XFER_EVEN	(1)
#define ADB_STATE_XFER_ODD	(2)
#define ADB_STATE_IDLE		(3)
#define ADB_STATE_NOTINIT	(4)

// ADB commands
#define ADB_CMD_RESET		(0)
#define ADB_CMD_FLUSH		(1)

// ADB line states
enum
{
    // receive states
    LST_IDLE = 0,
    LST_ATTENTION,
    LST_BIT0,
    LST_BIT1,
    LST_BIT2,
    LST_BIT3,
    LST_BIT4,
    LST_BIT5,
    LST_BIT6,
    LST_BIT7,
    LST_TSTOP,
    LST_WAITT1T,
    LST_RCVSTARTBIT,
    LST_SRQNODATA,

    // send states
    LST_TSTOPSTART,
    LST_TSTOPSTARTa,
    LST_STARTBIT,
    LST_SENDBIT0,
    LST_SENDBIT0a,
    LST_SENDBIT1,
    LST_SENDBIT1a,
    LST_SENDBIT2,
    LST_SENDBIT2a,
    LST_SENDBIT3,
    LST_SENDBIT3a,
    LST_SENDBIT4,
    LST_SENDBIT4a,
    LST_SENDBIT5,
    LST_SENDBIT5a,
    LST_SENDBIT6,
    LST_SENDBIT6a,
    LST_SENDBIT7,
    LST_SENDBIT7a,
    LST_SENDSTOP,
    LST_SENDSTOPa
};

/* *************************************************************************
 * High-level ADB primitives used by all lower-level implementations
 * *************************************************************************/

#if LOG_ADB
static const char *const adb_statenames[4] = { "NEW", "EVEN", "ODD", "IDLE" };
#endif

int mac_state::adb_pollkbd(int update)
{
	int i, j, keybuf, report, codes[2], result;
	static const char *const keynames[] = { "KEY0", "KEY1", "KEY2", "KEY3", "KEY4", "KEY5" };

	codes[0] = codes[1] = 0xff;	// key up
	report = result = 0;

	for (i = 0; i < 6; i++)
	{
		keybuf = ioport(keynames[i])->read();

		// any changes in this row?
		if ((keybuf != m_key_matrix[i]) && (report < 2))
		{
			// check each column bit
			for (j=0; j<16; j++)
			{
				if (((keybuf ^ m_key_matrix[i]) >> j) & 1)
				{
					// update m_key_matrix
					if (update)
					{
						m_key_matrix[i] = (m_key_matrix[i] & ~ (1 << j)) | (keybuf & (1 << j));
					}

					codes[report] = (i<<4)|j;

					// key up?
					if (!(keybuf & (1 << j)))
					{
						codes[report] |= 0x80;
					}

					// update modifier state
					if (update)
					{
						if (((i<<4)|j) == 0x39)
						{
							if (codes[report] & 0x80)
							{
								m_adb_modifiers &= ~0x20;
							}
							else
							{
								m_adb_modifiers |= 0x20;
							}
						}
						if (((i<<4)|j) == 0x36)
						{
							if (codes[report] & 0x80)
							{
								m_adb_modifiers &= ~0x8;
							}
							else
							{
								m_adb_modifiers |= 0x08;
							}
						}
						if (((i<<4)|j) == 0x38)
						{
							if (codes[report] & 0x80)
							{
								m_adb_modifiers &= ~0x4;
							}
							else
							{
								m_adb_modifiers |= 0x04;
							}
						}
						if (((i<<4)|j) == 0x3a)
						{
							if (codes[report] & 0x80)
							{
								m_adb_modifiers &= ~0x2;
							}
							else
							{
								m_adb_modifiers |= 0x02;
							}
						}
						if (((i<<4)|j) == 0x37)
						{
							if (codes[report] & 0x80)
							{
								m_adb_modifiers &= ~0x1;
							}
							else
							{
								m_adb_modifiers |= 0x01;
							}
						}
					}

					// we run out of keys we can track?
					report++;
					if (report == 2)
					{
						break;
					}
				}
			}

			// we run out of keys we can track?
			if (report == 2)
			{
				break;
			}
		}
	}

//  printf("ADB keyboard: update %d keys %02x %02x\n", update, codes[0], codes[1]);

	// figure out if there was a change
	if ((m_adb_currentkeys[0] != codes[0]) || (m_adb_currentkeys[1] != codes[1]))
	{
		result = 1;

		// if we want to update the current read, do so
		if (update)
		{
			m_adb_currentkeys[0] = codes[0];
			m_adb_currentkeys[1] = codes[1];
		}
	}

	return result;
}

int mac_state::adb_pollmouse()
{
	int NewX, NewY, NewButton;

	if (!m_adb_mouse_initialized)
	{
		return 0;
	}

	NewButton = ioport("MOUSE0")->read() & 0x01;
	NewX = ioport("MOUSE2")->read();
	NewY = ioport("MOUSE1")->read();

	if ((NewX != m_adb_lastmousex) || (NewY != m_adb_lastmousey) || (NewButton != m_adb_lastbutton))
	{
		return 1;
	}

	return 0;
}

void mac_state::adb_accummouse( UINT8 *MouseX, UINT8 *MouseY )
{
	int MouseCountX = 0, MouseCountY = 0;
	int NewX, NewY;

	NewX = ioport("MOUSE2")->read();
	NewY = ioport("MOUSE1")->read();

	/* see if it moved in the x coord */
	if (NewX != m_adb_lastmousex)
	{
		int diff = NewX - m_adb_lastmousex;

		/* check for wrap */
		if (diff > 0x80)
			diff = 0x100-diff;
		if  (diff < -0x80)
			diff = -0x100-diff;

		MouseCountX += diff;
		m_adb_lastmousex = NewX;
	}

	/* see if it moved in the y coord */
	if (NewY != m_adb_lastmousey)
	{
		int diff = NewY - m_adb_lastmousey;

		/* check for wrap */
		if (diff > 0x80)
			diff = 0x100-diff;
		if  (diff < -0x80)
			diff = -0x100-diff;

		MouseCountY += diff;
		m_adb_lastmousey = NewY;
	}

	m_adb_lastbutton = ioport("MOUSE0")->read() & 0x01;

	*MouseX = (UINT8)MouseCountX;
	*MouseY = (UINT8)MouseCountY;
}

void mac_state::adb_talk()
{
	int addr, reg;

	addr = (m_adb_command>>4);
	reg = (m_adb_command & 3);

//  printf("Mac sent %x (cmd %d addr %d reg %d mr %d kr %d)\n", mac->m_adb_command, (mac->m_adb_command>>2)&3, addr, reg, m_adb_mouseaddr, m_adb_keybaddr);

	if (m_adb_waiting_cmd)
	{
		switch ((m_adb_command>>2)&3)
		{
			case 0:
			case 1:
				switch (reg)
				{
					case ADB_CMD_RESET:
						#if LOG_ADB || LOG_ADB_TALK_LISTEN
						printf("ADB RESET: reg %x address %x\n", reg, addr);
						#endif
						m_adb_direction = 0;
						m_adb_send = 0;
						break;

					case ADB_CMD_FLUSH:
						#if LOG_ADB || LOG_ADB_TALK_LISTEN
						printf("ADB FLUSH: reg %x address %x\n", reg, addr);
						#endif

						m_adb_direction = 0;
						m_adb_send = 0;
						break;

					default:	// reserved/unused
						break;
				}
				break;

			case 2:	// listen
                m_adb_datasize = 0;
                if ((addr == m_adb_keybaddr) || (addr == m_adb_mouseaddr))
                {
				    #if LOG_ADB || LOG_ADB_TALK_LISTEN
                    printf("ADB LISTEN: reg %x address %x\n", reg, addr);
    				#endif
                    m_adb_direction = 1;	// input from Mac
                    m_adb_command = 0;
                    m_adb_listenreg = reg;
                    m_adb_listenaddr = addr;
                    if ((ADB_IS_EGRET) || (ADB_IS_CUDA))
                    {
                        m_adb_stream_ptr = 0;
                        memset(m_adb_buffer, 0, sizeof(m_adb_buffer));
                    }
                }
                else
                {
                	#if LOG_ADB || LOG_ADB_TALK_LISTEN
                    printf("ADB LISTEN to unknown device, timing out\n");
                    #endif
                    m_adb_direction = 0;
                }
				break;

			case 3: // talk
				#if LOG_ADB || LOG_ADB_TALK_LISTEN
				printf("ADB TALK: reg %x address %x (K %x M %x)\n", reg, addr, m_adb_keybaddr, m_adb_mouseaddr);
				#endif

				// keep track of what device the Mac last TALKed to
				m_adb_last_talk = addr;

				m_adb_direction = 0;	// output to Mac
				if (addr == m_adb_mouseaddr)
				{
					UINT8 mouseX, mouseY;

					#if LOG_ADB || LOG_ADB_TALK_LISTEN
					printf("Talking to mouse, register %x\n", reg);
					#endif

					switch (reg)
					{
						// read mouse
						case 0:
							if (m_adb_srq_switch)
							{
								m_adb_srq_switch = 0;
								mouseX = mouseY = 0;
							}
							else
							{
								this->adb_accummouse(&mouseX, &mouseY);
							}
							m_adb_buffer[0] = (m_adb_lastbutton & 0x01) ? 0x00 : 0x80;
							m_adb_buffer[0] |= mouseX & 0x7f;
							m_adb_buffer[1] = mouseY & 0x7f;
							m_adb_datasize = 2;
							break;

						// get ID/handler
						case 3:
							m_adb_buffer[0] = 0x60 | (m_adb_mouseaddr&0xf);	// SRQ enable, no exceptional event
							m_adb_buffer[1] = 0x01;	// handler 1
							m_adb_datasize = 2;

							m_adb_mouse_initialized = 1;
							break;

						default:
							break;
					}

                    if (adb_pollkbd(0))
                    {
                        m_adb_srqflag = true;
                    }
				}
				else if (addr == m_adb_keybaddr)
				{
					#if LOG_ADB || LOG_ADB_TALK_LISTEN
					printf("Talking to keyboard, register %x\n", reg);
					#endif

					switch (reg)
					{
						// read keyboard
						case 0:
							if (m_adb_srq_switch)
							{
								m_adb_srq_switch = 0;
							}
							else
							{
								this->adb_pollkbd(1);
							}

/*                            if (m_adb_currentkeys[0] != 0xff)
                            {
                                printf("Keys[0] = %02x\n", m_adb_currentkeys[0]);
                            }
                            if (m_adb_currentkeys[1] != 0xff)
                            {
                                printf("Keys[1] = %02x\n", m_adb_currentkeys[1]);
                            }*/

							m_adb_buffer[0] = m_adb_currentkeys[1];
							m_adb_buffer[1] = m_adb_currentkeys[0];
							m_adb_datasize = 2;
							break;

						// read modifier keys
                        case 2:
                            {
                                this->adb_pollkbd(1);
                                m_adb_buffer[0] = m_adb_modifiers;
                                m_adb_buffer[1] = 0xff;
                                m_adb_datasize = 2;
                            }
							break;

						// get ID/handler
						case 3:
							m_adb_buffer[0] = 0x60 | (m_adb_keybaddr&0xf);	// SRQ enable, no exceptional event
							m_adb_buffer[1] = 0x01;	// handler 1
							m_adb_datasize = 2;

							m_adb_keybinitialized = 1;
							break;

						default:
							break;
					}

                    if (adb_pollmouse())
                    {
                        m_adb_srqflag = true;
                    }
				}
				else
				{
					#if LOG_ADB || LOG_ADB_TALK_LISTEN
					printf("ADB: talking to unconnected device %d (K %d M %d)\n", addr, m_adb_keybaddr, m_adb_mouseaddr);
					#endif
					m_adb_buffer[0] = m_adb_buffer[1] = 0;
					m_adb_datasize = 0;

                    if ((adb_pollkbd(0)) || (adb_pollmouse()))
                    {
                        m_adb_srqflag = true;
                    }
				}
				break;
		}

		m_adb_waiting_cmd = 0;
	}
	else
	{
		#if LOG_ADB || LOG_ADB_TALK_LISTEN
		printf("Got LISTEN data %02x %02x for device %x reg %x\n", m_adb_command, m_adb_buffer[1], m_adb_listenaddr, m_adb_listenreg);
		#endif

        m_adb_direction = 0;

		if (m_adb_listenaddr == m_adb_mouseaddr)
		{
			if ((m_adb_listenreg == 3) && (m_adb_command > 0) && (m_adb_command < 16))
			{
				#if LOG_ADB || LOG_ADB_TALK_LISTEN
				printf("MOUSE: moving to address %x\n", m_adb_command);
				#endif
				m_adb_mouseaddr = m_adb_command&0x0f;
			}
		}
		else if (m_adb_listenaddr == m_adb_keybaddr)
		{
			if ((m_adb_listenreg == 3) && (m_adb_command > 0) && (m_adb_command < 16))
			{
				#if LOG_ADB || LOG_ADB_TALK_LISTEN
				printf("KEYBOARD: moving to address %x\n", m_adb_command);
				#endif
				m_adb_keybaddr = m_adb_command&0x0f;
			}
		}
	}
}

TIMER_CALLBACK(mac_adb_tick)
{
	mac_state *mac = machine.driver_data<mac_state>();

    if ((ADB_IS_EGRET_NONCLASS) || (ADB_IS_CUDA_NONCLASS))
    {
        switch (mac->m_adb_linestate)
        {
            case LST_SRQNODATA:
                mac->set_adb_line(ASSERT_LINE);
                mac->m_adb_linestate = LST_IDLE;
                break;

            case LST_TSTOPSTART:
                mac->set_adb_line(ASSERT_LINE);
                mac->m_adb_timer->adjust(attotime::from_ticks(57, 1000000));
                mac->m_adb_linestate++;
                break;

            case LST_TSTOPSTARTa:
                mac->set_adb_line(CLEAR_LINE);
                mac->m_adb_timer->adjust(attotime::from_ticks(57, 1000000));
                mac->m_adb_linestate++;
                break;

            case LST_STARTBIT:
                mac->set_adb_line(ASSERT_LINE);
                mac->m_adb_timer->adjust(attotime::from_ticks(105, 1000000));
                mac->m_adb_linestate++;
                break;

            case LST_SENDBIT0:
            case LST_SENDBIT1:
            case LST_SENDBIT2:
            case LST_SENDBIT3:
            case LST_SENDBIT4:
            case LST_SENDBIT5:
            case LST_SENDBIT6:
            case LST_SENDBIT7:
                mac->set_adb_line(CLEAR_LINE);
                if (mac->m_adb_buffer[mac->m_adb_stream_ptr] & 0x80)
                {
//                    printf("1 ");
                    mac->m_adb_timer->adjust(attotime::from_ticks(57, 1000000));
                }
                else
                {
//                    printf("0 ");
                    mac->m_adb_timer->adjust(attotime::from_ticks(105, 1000000));
                }
                mac->m_adb_linestate++;
                break;

            case LST_SENDBIT0a:
            case LST_SENDBIT1a:
            case LST_SENDBIT2a:
            case LST_SENDBIT3a:
            case LST_SENDBIT4a:
            case LST_SENDBIT5a:
            case LST_SENDBIT6a:
                mac->set_adb_line(ASSERT_LINE);
                if (mac->m_adb_buffer[mac->m_adb_stream_ptr] & 0x80)
                {
                    mac->m_adb_timer->adjust(attotime::from_ticks(105, 1000000));
                }
                else
                {
                    mac->m_adb_timer->adjust(attotime::from_ticks(57, 1000000));
                }
                mac->m_adb_buffer[mac->m_adb_stream_ptr] <<= 1;
                mac->m_adb_linestate++;
                break;

            case LST_SENDBIT7a:
                mac->set_adb_line(ASSERT_LINE);
                if (mac->m_adb_buffer[mac->m_adb_stream_ptr] & 0x80)
                {
//                    printf("  ");
                    mac->m_adb_timer->adjust(attotime::from_ticks(105, 1000000));
                }
                else
                {
//                    printf("  ");
                    mac->m_adb_timer->adjust(attotime::from_ticks(57, 1000000));
                }

                mac->m_adb_stream_ptr++;
                if (mac->m_adb_stream_ptr == mac->m_adb_datasize)
                {
                    mac->m_adb_linestate++;
                }
                else
                {
                    mac->m_adb_linestate = LST_SENDBIT0;
                }
                break;

            case LST_SENDSTOP:
                mac->set_adb_line(CLEAR_LINE);
                mac->m_adb_timer->adjust(attotime::from_ticks((57*2), 1000000));
                mac->m_adb_linestate++;
                break;

            case LST_SENDSTOPa:
                mac->set_adb_line(ASSERT_LINE);
                mac->m_adb_timer->adjust(attotime::never);
                mac->m_adb_linestate = LST_IDLE;
                break;
        }
    }
    else
    {
        // do one clock transition on CB1 to advance the VIA shifter
        mac->m_adb_extclock ^= 1;
        mac->m_via1->write_cb1(mac->m_adb_extclock);
        mac->m_adb_extclock ^= 1;
        mac->m_via1->write_cb1(mac->m_adb_extclock);

        mac->m_adb_timer_ticks--;
        if (!mac->m_adb_timer_ticks)
        {
            mac->m_adb_timer->adjust(attotime::never);

            if ((mac->m_adb_direction) && (ADB_IS_BITBANG))
            {
                mac->adb_talk();
            }
        }
        else
        {
            mac->m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
        }
    }
}

void mac_state::mac_adb_newaction(int state)
{
	if (state != m_adb_state)
	{
		#if LOG_ADB
		printf("New ADB state: %s\n", adb_statenames[state]);
		#endif

		m_adb_state = state;
		m_adb_timer_ticks = 8;

		switch (state)
		{
			case ADB_STATE_NEW_COMMAND:
				m_adb_command = m_adb_send = 0;
				m_adb_direction = 1;	// Mac is shifting us a command
				m_adb_waiting_cmd = 1;	// we're going to get a command
				m_adb_irq_pending = 0;
				m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
				break;

			case ADB_STATE_XFER_EVEN:
			case ADB_STATE_XFER_ODD:
				if (m_adb_datasize > 0)
				{
					int i;

					// is something trying to send to the Mac?
					if (m_adb_direction == 0)
					{
						// set up the byte
						m_adb_send = m_adb_buffer[0];
						m_adb_datasize--;

						// move down the rest of the buffer, if any
						for (i = 0; i < m_adb_datasize; i++)
						{
							m_adb_buffer[i] = m_adb_buffer[i+1];
						}
					}

				}
				else
				{
					m_adb_send = 0;
					m_adb_irq_pending = 1;
				}

				m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
				break;

			case ADB_STATE_IDLE:
				m_adb_irq_pending = 0;
				break;
		}
	}
}

TIMER_CALLBACK(mac_pmu_tick)
{
	mac_state *mac = machine.driver_data<mac_state>();

	// state 10 means this is in response to an ADB command
	if (mac->m_pm_state == 10)
	{
		#if LOG_ADB
		printf("PM: was state 10, chunk-chunking CB1\n");
		#endif
		mac->m_pm_state = 0;

		// tick CB1, which should cause a PMU interrupt on PMU machines
		mac->m_adb_extclock ^= 1;
		mac->m_via1->write_cb1(mac->m_adb_extclock);
		mac->m_adb_extclock ^= 1;
		mac->m_via1->write_cb1(mac->m_adb_extclock);
	}
	else
	{
		#if LOG_ADB
		printf("PM: timer tick, lowering ACK\n");
		#endif
		mac->m_pm_ack &= ~2;	// lower ACK to handshake next step
	}
}

void mac_state::pmu_one_byte_reply(UINT8 result)
{
	m_pm_out[0] = m_pm_out[1] = 1;	// length
	m_pm_out[2] = result;
	m_pm_slen = 3;
	m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
}

void mac_state::pmu_three_byte_reply(UINT8 result1, UINT8 result2, UINT8 result3)
{
	m_pm_out[0] = m_pm_out[1] = 3;	// length
	m_pm_out[2] = result1;
	m_pm_out[3] = result2;
	m_pm_out[4] = result3;
	m_pm_slen = 5;
	m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
}

void mac_state::pmu_exec()
{
	m_pm_sptr = 0;	// clear send pointer
	m_pm_slen = 0;	// and send length
	m_pm_dptr = 0;	// and receive pointer

//  printf("PMU: Command %02x\n", mac->m_pm_cmd[0]);
	switch (m_pm_cmd[0])
	{
		case 0x10:	// subsystem power and clock ctrl
			break;

		case 0x20:	// send ADB command (PMU must issue an IRQ on completion)
			#if 0
			printf("PMU: Send ADB %02x %02x cmd %02x flag %02x data %02x %02x\n",
				   m_pm_cmd[0],	// 0x20
				   m_pm_cmd[1],	// ???
				   m_pm_cmd[2],	// adb flags (2 for autopoll active, 3 to reset bus?)
				   m_pm_cmd[3],	// length of ADB data
				   m_pm_cmd[4],	// adb data
				   m_pm_cmd[5]);
			#endif

			#if 0
			m_pm_state = 10;
			m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			if (ADB_IS_PM_VIA1_CLASS)
			{
				m_pmu_int_status = 0x1;
			}
			else if (ADB_IS_PM_VIA2_CLASS)
			{
				m_pmu_int_status = 0x10;
			}
			else
			{
				fatalerror("mac: unknown ADB PMU type\n");
			}
			m_pmu_last_adb_command = m_pm_cmd[2];
			m_adb_command = m_pm_cmd[2];
			m_adb_waiting_cmd = 1;
			adb_talk();

			if ((m_pm_cmd[2] & 0xf) == 0xb)	// LISTEN register 3 (remap)
			{
				m_adb_waiting_cmd = 0;
				m_adb_command = mac->m_pm_cmd[5];
				adb_talk();
			}
			#else
			if (((m_pm_cmd[2] == 0xfc) || (m_pm_cmd[2] == 0x2c)) && (m_pm_cmd[3] == 4))
			{
//              printf("PMU: request to poll ADB, returning nothing\n");
				m_pm_slen = 0;
				m_pmu_int_status = 0;
			}
			else
			{
				m_pm_state = 10;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
				if (ADB_IS_PM_VIA1_CLASS)
				{
					m_pmu_int_status = 0x1;
				}
				else if (ADB_IS_PM_VIA2_CLASS)
				{
					m_pmu_int_status = 0x10;
				}
				else
				{
					fatalerror("mac: unknown ADB PMU type\n");
				}
				m_pmu_last_adb_command = m_pm_cmd[2];
			}

			m_adb_command = m_pm_cmd[2];
			m_adb_waiting_cmd = 1;
			adb_talk();
			#endif
			break;

		case 0x21:	// turn ADB auto-poll off (does this need a reply?)
			break;

		case 0x28:	// read ADB
			if (m_adb_datasize > 0)
			{
				m_adb_datasize = 1; // hack

				m_pm_out[0] = m_pm_out[1] = 3 + m_adb_datasize;
				m_pm_out[2] = 0;
//              m_pm_out[3] = m_pmu_last_adb_command;
				m_pm_out[3] = 0;
				m_pm_out[4] = m_adb_datasize;
				for (int i = 0; i < m_adb_datasize; i++)
				{
					m_pm_out[5+i] = 0; //mac->m_adb_buffer[i];
				}
				m_pm_slen = 5 + m_adb_datasize;
			}
			else
			{
				m_pm_out[0] = m_pm_out[1] = 4;
				m_pm_out[2] = 0;
				m_pm_out[3] = 0;
//              m_pm_out[3] = m_pmu_last_adb_command;
				m_pm_out[4] = 1;	// length of following data
				m_pm_out[5] = 0;
				m_pm_slen = 6;
			}
/*          printf("ADB packet: ");
            for (int i = 0; i < m_pm_slen; i++)
            {
                printf("%02x ", m_pm_out[i]);
            }
            printf("\n");*/
			m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(1000)));
			break;

		case 0x31:  // write first 20 bytes of PRAM
			{
				for (int i = 0; i < 20; i++)
				{
					m_adb_pram[i] = m_pm_cmd[1+i];
				}
			}
			break;

		case 0x32:	// write extended PRAM byte(s).  cmd[2] = address, cmd[3] = length, cmd[4...] = data
			if ((m_pm_cmd[2] + m_pm_cmd[3]) < 0x100)
			{
				int i;

				for (i = 0; i < m_pm_cmd[3]; i++)
				{
					m_adb_pram[m_pm_cmd[2] + i] = m_pm_cmd[4+i];
				}
			}
			break;

		case 0x38:  // read time
			{
				m_pm_out[0] = m_pm_out[1] = 4;
				m_pm_out[2] = 0x63; // famous Mac RTC value of 8/27/56 8:35:00 PM
				m_pm_out[3] = 0x0b;
				m_pm_out[4] = 0xd1;
				m_pm_out[5] = 0x78;
				m_pm_slen = 6;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			}
			break;

		case 0x39:	// read first 20 bytes of PRAM
			{
				int i;

				m_pm_out[0] = m_pm_out[1] = 20;
				for (i = 0; i < 20; i++)
				{
					m_pm_out[2 + i] = m_adb_pram[i];
				}
				m_pm_slen = 22;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			}
			break;

		case 0x3a:	// read extended PRAM byte(s).  cmd[2] = address, cmd[3] = length
			if ((m_pm_cmd[2] + m_pm_cmd[3]) < 0x100)
			{
				int i;

				m_pm_out[0] = m_pm_out[1] = m_pm_cmd[3];
				for (i = 0; i < m_pm_cmd[3]; i++)
				{
					m_pm_out[2 + i] = m_adb_pram[m_pm_cmd[2] + i];
				}
				m_pm_slen = m_pm_out[0] + 2;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			}
			break;

		case 0x40:  // set screen contrast
			break;

		case 0x41:
			break;

		case 0x58:	// read internal modem status
			pmu_one_byte_reply(0);
			break;

		case 0x60:	// set low power warning and cutoff battery levels
			break;

		case 0x68:	// read battery/charger level
			pmu_three_byte_reply(255, 255, 255);
			break;

		case 0x69:  // read battery/charger instantaneous level and status
			pmu_three_byte_reply(255, 255, 255);
			break;

		case 0x6b:	// read extended battery/charger level and status (wants an 8 byte reply)
			m_pm_out[0] = m_pm_out[1] = 8;	// length
			m_pm_out[2] = 255;
			m_pm_out[3] = 255;
			m_pm_out[4] = 255;
			m_pm_out[5] = 255;
			m_pm_out[6] = 255;
			m_pm_out[7] = 255;
			m_pm_out[8] = 255;
			m_pm_out[9] = 255;
			m_pm_slen = 10;
			m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			break;

		case 0x6c:	// read battery ID
			pmu_one_byte_reply(1);
			break;

		case 0x78:	// read interrupt flag
			if (ADB_IS_PM_VIA2_CLASS)	// PB 140/170 use a "leaner" PMU protocol where you get the data for a PMU interrupt here
			{
				#if 0
				if ((m_pmu_int_status&0xf0) == 0x10)
				{
					if (m_adb_datasize > 0)
					{
						m_adb_datasize = 1; // hack
						m_pm_out[0] = m_pm_out[1] = 2 + m_adb_datasize;
						m_pm_out[2] = m_pmu_int_status; // ADB status in low nibble
						m_pm_out[3] = m_pmu_last_adb_command;		  // ADB command that was sent
						for (int i = 0; i < m_adb_datasize; i++)
						{
							m_pm_out[4+i] = 0; //m_adb_buffer[i];
						}
						m_pm_slen = 4 + m_adb_datasize;
						m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(1500)));

/*                      printf("ADB packet: ");
                        for (int i = 0; i < m_pm_slen; i++)
                        {
                            printf("%02x ", m_pm_out[i]);
                        }
                        printf("\n");*/
					}
					else
					{
						m_pm_out[0] = m_pm_out[1] = 2;
						m_pm_out[2] = m_pmu_int_status; // ADB status in low nibble
						m_pm_out[3] = m_pmu_last_adb_command;		  // ADB command that was sent OR 0x80 for extra error-ness
						m_pm_out[4] = 0;							  // return data
						m_pm_slen = 4;
						m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(1500)));
					}
				}
				else
				{
					pmu_one_byte_reply(mac, m_pmu_int_status);
				}
				#else
				if ((m_pmu_int_status&0xf0) == 0x10)
				{
					m_pm_out[0] = m_pm_out[1] = 2;
					m_pm_out[2] = m_pmu_int_status; // ADB status in low nibble
					m_pm_out[3] = m_pmu_last_adb_command;		  // ADB command that was sent OR 0x80 for extra error-ness
					m_pm_out[4] = 0;							  // return data
					m_pm_slen = 4;
					m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(1500)));
				}
				else
				{
					pmu_one_byte_reply(m_pmu_int_status);
				}
				#endif
			}
			else
			{
				pmu_one_byte_reply(m_pmu_int_status);
			}

			m_pmu_int_status = 0;
			break;

		case 0x90: // sound power control
			break;

		case 0x98:	// read sound power state
			pmu_one_byte_reply(1);
			break;

		case 0xd8:	// read A/D converter (not sure what this does)
			pmu_one_byte_reply(0);
			break;

		case 0xe0:	// write PMU internal RAM
			break;

		case 0xe8:  // read PMU internal RAM (just return zeroes)
			{
				int i;

				m_pm_out[0] = m_pm_out[1] = m_pm_cmd[4];
//              printf("PMU read at %x\n", m_pm_cmd[2] | (m_pm_cmd[3]<<8));

				// note: read at 0xEE00 0 = target disk mode, 0xff = normal bootup
				// (actually 0x00EE, the 50753 port 6)

				for (i = 0; i < m_pm_cmd[4]; i++)
				{
					m_pm_out[2 + i] = 0xff;
				}
				m_pm_slen = m_pm_out[0] + 2;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
			}
			break;

		case 0xec:	// PMU self-test (send 1 count byte + reply)
			pmu_one_byte_reply(0);
			break;

		default:
			fatalerror("PMU: Unhandled command %02x\n", m_pm_cmd[0]);
			break;
	}

	if (m_pm_slen > 0)
	{
		m_pm_state = 1;
	}
}

void mac_state::adb_vblank()
{
	if ((m_adb_state == ADB_STATE_IDLE) || ((ADB_IS_PM_CLASS) && (m_pmu_poll)))
	{
		if (this->adb_pollmouse())
		{
			// if the mouse was the last TALK, we can just send the new data
			// otherwise we need to pull SRQ
			if ((m_adb_last_talk == m_adb_mouseaddr) && !(ADB_IS_PM_CLASS))
			{
				// repeat last TALK to get updated data
				m_adb_waiting_cmd = 1;
				this->adb_talk();

				m_adb_timer_ticks = 8;
				this->m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
			}
			#if 0
			else if (ADB_IS_PM_CLASS)
			{
				m_adb_waiting_cmd = 1;
				this->adb_talk();
				m_pm_state = 10;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
				if (ADB_IS_PM_VIA1_CLASS)
				{
					m_pmu_int_status = 0x1;
				}
				else if (ADB_IS_PM_VIA2_CLASS)
				{
					m_pmu_int_status = 0x10;
				}
			}
			#endif
			else
			{
				m_adb_irq_pending = 1;
				m_adb_command = m_adb_send = 0;
				m_adb_timer_ticks = 1;	// one tick should be sufficient to make it see  the IRQ
				this->m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
				m_adb_srq_switch = 1;
			}
		}
		else if (this->adb_pollkbd(0))
		{
			if ((m_adb_last_talk == m_adb_keybaddr) && !(ADB_IS_PM_CLASS))
			{
				// repeat last TALK to get updated data
				m_adb_waiting_cmd = 1;
				this->adb_talk();

				m_adb_timer_ticks = 8;
				this->m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
			}
			#if 0
			else if (ADB_IS_PM_CLASS)
			{
				m_adb_waiting_cmd = 1;
				this->adb_talk();
				m_pm_state = 10;
				m_pmu_send_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(200)));
				m_pmu_int_status = 0x1;
			}
			#endif
			else
			{
				m_adb_irq_pending = 1;
				m_adb_command = m_adb_send = 0;
				m_adb_timer_ticks = 1;	// one tick should be sufficient to make it see  the IRQ
				this->m_adb_timer->adjust(attotime(0, ATTOSECONDS_IN_USEC(100)));
				m_adb_srq_switch = 1;
			}
		}
	}
}

void mac_state::adb_reset()
{
	int i;

	m_adb_srq_switch = 0;
	m_adb_irq_pending = 0;		// no interrupt
	m_adb_timer_ticks = 0;
	m_adb_command = 0;
	m_adb_extclock = 0;
	m_adb_send = 0;
	m_adb_waiting_cmd = 0;
	m_adb_streaming = MCU_STREAMING_NONE;
	m_adb_state = 0;
    m_adb_srqflag = false;
	m_pmu_poll = 0;
	if (ADB_IS_BITBANG_CLASS)
	{
		m_adb_state = ADB_STATE_NOTINIT;
	}
	m_adb_direction = 0;
	m_adb_datasize = 0;
	m_adb_last_talk = -1;

    m_adb_linestate = 0;

	// mouse
	m_adb_mouseaddr = 3;
	m_adb_lastmousex = m_adb_lastmousey = m_adb_lastbutton = 0;
	m_adb_mouse_initialized = 0;

	// keyboard
	m_adb_keybaddr = 2;
	m_adb_keybinitialized = 0;
	m_adb_currentkeys[0] = m_adb_currentkeys[1] = 0xff;
	m_adb_modifiers = 0xff;
	for (i=0; i<7; i++)
	{
		m_key_matrix[i] = 0;
	}
}

void mac_state::adb_linechange(int state, int dtime)
{
/*    static const char *states[] =
    {
        "idle",
        "attention",
        "bit0",
        "bit1",
        "bit2",
        "bit3",
        "bit4",
        "bit5",
        "bit6",
        "bit7",
        "tstop",
        "waitt1t",
        "rcvstartbit",
        "srqnodata"
    };*/

/*    if (m_adb_linestate <= 12)
    {
        printf("linechange: %d -> %d, time %d (state %d = %s)\n", state^1, state, dtime, m_adb_linestate, states[m_adb_linestate]);
    }
    else
    {
        printf("linechange: %d -> %d, time %d (state %d)\n", state^1, state, dtime, m_adb_linestate);
    }*/

    if ((m_adb_direction) && (m_adb_linestate == LST_TSTOP))
    {
        if (m_adb_stream_ptr & 1)   // odd byte, can't end here
        {
//            printf("critical linechange: odd, cont\n");
            m_adb_linestate = LST_BIT0;
        }
        else
        {
            if (dtime < 90)
            {
//                printf("critical linechange: even, and it's another bit\n");
                m_adb_linestate = LST_BIT0;
            }
        }
    }

    switch (m_adb_linestate)
    {
        case LST_IDLE:
            if ((state) && (dtime >= 4500))     // reset
            {
//                printf("ADB RESET\n");
            }
            else if ((state) && (dtime >= 1200))    // attention
            {
//                printf("ADB ATTENTION\n");
                m_adb_waiting_cmd = 1;
                m_adb_direction = 0;
                m_adb_linestate++;
            }
            break;

        case LST_ATTENTION:
            if ((!state) && (dtime >= 90))     // Tsync
            {
//                printf("ADB Tsync\n");
                m_adb_command = 0;
                m_adb_linestate++;
            }
            break;

        case LST_BIT0: 
        case LST_BIT1: 
        case LST_BIT2: 
        case LST_BIT3: 
        case LST_BIT4: 
        case LST_BIT5: 
        case LST_BIT6: 
        case LST_BIT7: 
            if (!state)
            {
                if (dtime >= 90)    // "1" bit
                {
                    m_adb_command |= 1;
                }
//                printf("ADB bit %d\n", m_adb_command & 1);

                if (m_adb_linestate != LST_BIT7)
                {
                    m_adb_command <<= 1;
                }
                else
                {
                    if (m_adb_direction)
                    {
//                        printf("listen byte[%d] = %02x\n", m_adb_stream_ptr, m_adb_command);
                        m_adb_buffer[m_adb_stream_ptr++] = m_adb_command;
                        m_adb_command = 0;
                    }
                }

                m_adb_linestate++;
            }
            break;

        case LST_TSTOP:
            if (state)
            {
//                printf("ADB TSTOP, command byte %02x\n", m_adb_command);

                if (m_adb_direction)
                {
                    m_adb_command = m_adb_buffer[0];
                }

                m_adb_srqflag = false;
                adb_talk();

                if (!m_adb_srqflag)
                {
                    set_adb_line(ASSERT_LINE);
                }
                else
                {
                    set_adb_line(CLEAR_LINE);
                }

                if (m_adb_datasize > 0)
                {
/*                    printf("Device has %d bytes of data: ", m_adb_datasize);
                    for (int i = 0; i < m_adb_datasize; i++)
                    {
                        printf("%02x ", m_adb_buffer[i]);
                    }*/
                    m_adb_linestate = LST_TSTOPSTART;   // T1t
                    m_adb_timer->adjust(attotime::from_ticks(324/4, 1000000));
                    m_adb_stream_ptr = 0;
                }
                else if (m_adb_direction)   // if direction is set, we LISTENed to a valid device
                {
                    m_adb_linestate = LST_WAITT1T;
                }
                else    // no valid device targetted, time out
                {
                    if (m_adb_srqflag)
                    {
                        m_adb_linestate = LST_SRQNODATA;
                        m_adb_timer->adjust(attotime::from_ticks(486, 1000000));   // SRQ time
                    }
                    else
                    {
                        m_adb_linestate = LST_IDLE;
                    }
                }
            }
            break;

        case LST_WAITT1T:
            if ((!state) && (dtime >= 300))     // T1t
            {
//                printf("ADB T1t\n");
                m_adb_linestate++;
            }
            break;

        case LST_RCVSTARTBIT:
            if ((!state) && (dtime >= 90))       // start
            {
//                printf("ADB start\n");
                m_adb_linestate = LST_BIT0;
                m_adb_command = 0;
            }
            break;
    }
}

void mac_state::set_adb_line(int linestate)
{
    if (ADB_IS_EGRET)
    {
        m_egret->set_adb_line(linestate);
    }
    else if (ADB_IS_CUDA)
    {
        m_cuda->set_adb_line(linestate);
    }
}