summaryrefslogblamecommitdiffstats
path: root/private/mvdm/softpc.new/base/cvidc/accessfn.c
blob: 1b4acb4e0ea705a9090c1311fe992e22453c98d6 (plain) (tree)
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
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622





















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                     
/*[
 * Generated File: accessfn.c
 *
]*/

#ifndef	PROD
#include	"insignia.h"
#include	"host_inc.h"
#include	"host_def.h"
#include	"Fpu_c.h"
#include	"Pigger_c.h"
#include	"Univer_c.h"
#define	CPU_PRIVATE
#include	"cpu4.h"
#include	"sas.h"
#include	"evidgen.h"

void	cpu_simulate	IFN0()
{
	(*(Cpu.Simulate))();
}

void	cpu_interrupt	IFN2(CPU_INT_TYPE, intType, IU16, intNum)
{
	(*(Cpu.Interrupt))(intType, intNum);
}

void	cpu_clearHwInt	IFN0()
{
	(*(Cpu.ClearHwInt))();
}

void	cpu_EOA_hook	IFN0()
{
	(*(Cpu.EndOfApplication))();
}

void	cpu_terminate	IFN0()
{
	(*(Cpu.Terminate))();
}

void	cpu_init	IFN0()
{
	(*(Cpu.Initialise))();
}

void	host_q_ev_set_count	IFN1(IU32, val)
{
	(*(Cpu.SetQuickEventCount))(val);
}

IU32	host_q_ev_get_count	IFN0()
{
	IU32 count;
	count = (*(Cpu.GetQuickEventCount))();
	return count;
}

IU32	host_calc_q_ev_inst_for_time	IFN1(IU32, val)
{
	IU32 result;
	result = (*(Cpu.CalcQuickEventInstTime))(val);
	return result;
}

void	cpu_init_ios_in	IFN4(IHP, InTables, IHP, OutTables, IUH, maxAdaptor, IU16, portMask)
{
	(*(Cpu.InitIOS))(InTables, OutTables, maxAdaptor, portMask);
}

void	ios_define_inb	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineInb))(adaptor, func);
}

void	ios_define_inw	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineInw))(adaptor, func);
}

void	ios_define_ind	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineInd))(adaptor, func);
}

void	ios_define_outb	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineOutb))(adaptor, func);
}

void	ios_define_outw	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineOutw))(adaptor, func);
}

void	ios_define_outd	IFN2(IUH, adaptor, IHP, func)
{
	(*(Cpu.DefineOutd))(adaptor, func);
}

void	setAL	IFN1(IU8, val)
{
	(*(Cpu.SetAL))(val);
}

void	setAH	IFN1(IU8, val)
{
	(*(Cpu.SetAH))(val);
}

void	setAX	IFN1(IU16, val)
{
	(*(Cpu.SetAX))(val);
}

void	setEAX	IFN1(IU32, val)
{
	(*(Cpu.SetEAX))(val);
}

void	setBL	IFN1(IU8, val)
{
	(*(Cpu.SetBL))(val);
}

void	setBH	IFN1(IU8, val)
{
	(*(Cpu.SetBH))(val);
}

void	setBX	IFN1(IU16, val)
{
	(*(Cpu.SetBX))(val);
}

void	setEBX	IFN1(IU32, val)
{
	(*(Cpu.SetEBX))(val);
}

void	setCL	IFN1(IU8, val)
{
	(*(Cpu.SetCL))(val);
}

void	setCH	IFN1(IU8, val)
{
	(*(Cpu.SetCH))(val);
}

void	setCX	IFN1(IU16, val)
{
	(*(Cpu.SetCX))(val);
}

void	setECX	IFN1(IU32, val)
{
	(*(Cpu.SetECX))(val);
}

void	setDL	IFN1(IU8, val)
{
	(*(Cpu.SetDL))(val);
}

void	setDH	IFN1(IU8, val)
{
	(*(Cpu.SetDH))(val);
}

void	setDX	IFN1(IU16, val)
{
	(*(Cpu.SetDX))(val);
}

void	setEDX	IFN1(IU32, val)
{
	(*(Cpu.SetEDX))(val);
}

void	setSI	IFN1(IU16, val)
{
	(*(Cpu.SetSI))(val);
}

void	setESI	IFN1(IU32, val)
{
	(*(Cpu.SetESI))(val);
}

void	setDI	IFN1(IU16, val)
{
	(*(Cpu.SetDI))(val);
}

void	setEDI	IFN1(IU32, val)
{
	(*(Cpu.SetEDI))(val);
}

void	setSP	IFN1(IU16, val)
{
	(*(Cpu.SetSP))(val);
}

void	setESP	IFN1(IU32, val)
{
	(*(Cpu.SetESP))(val);
}

void	setBP	IFN1(IU16, val)
{
	(*(Cpu.SetBP))(val);
}

void	setEBP	IFN1(IU32, val)
{
	(*(Cpu.SetEBP))(val);
}

void	setIP	IFN1(IU16, val)
{
	(*(Cpu.SetIP))(val);
}

void	setEIP	IFN1(IU32, val)
{
	(*(Cpu.SetEIP))(val);
}

IUH	setCS	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetCS))(val);
	return err;
}

IUH	setSS	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetSS))(val);
	return err;
}

IUH	setDS	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetDS))(val);
	return err;
}

IUH	setES	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetES))(val);
	return err;
}

IUH	setFS	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetFS))(val);
	return err;
}

IUH	setGS	IFN1(IU16, val)
{
	IUH err;
	err = (*(Cpu.SetGS))(val);
	return err;
}

void	setEFLAGS	IFN1(IU32, val)
{
	(*(Cpu.SetEFLAGS))(val);
}

void	setSTATUS	IFN1(IU16, val)
{
	(*(Cpu.SetSTATUS))(val);
}

void	setIOPL	IFN1(IU8, val)
{
	(*(Cpu.SetIOPL))(val);
}

void	setMSW	IFN1(IU16, val)
{
	(*(Cpu.SetMSW))(val);
}

void	setCR0	IFN1(IU32, val)
{
	(*(Cpu.SetCR0))(val);
}

void	setCR2	IFN1(IU32, val)
{
	(*(Cpu.SetCR2))(val);
}

void	setCR3	IFN1(IU32, val)
{
	(*(Cpu.SetCR3))(val);
}

void	setCF	IFN1(IBOOL, val)
{
	(*(Cpu.SetCF))(val);
}

void	setPF	IFN1(IBOOL, val)
{
	(*(Cpu.SetPF))(val);
}

void	setAF	IFN1(IBOOL, val)
{
	(*(Cpu.SetAF))(val);
}

void	setZF	IFN1(IBOOL, val)
{
	(*(Cpu.SetZF))(val);
}

void	setSF	IFN1(IBOOL, val)
{
	(*(Cpu.SetSF))(val);
}

void	setTF	IFN1(IBOOL, val)
{
	(*(Cpu.SetTF))(val);
}

void	setIF	IFN1(IBOOL, val)
{
	(*(Cpu.SetIF))(val);
}

void	setDF	IFN1(IBOOL, val)
{
	(*(Cpu.SetDF))(val);
}

void	setOF	IFN1(IBOOL, val)
{
	(*(Cpu.SetOF))(val);
}

void	setNT	IFN1(IBOOL, val)
{
	(*(Cpu.SetNT))(val);
}

void	setRF	IFN1(IBOOL, val)
{
	(*(Cpu.SetRF))(val);
}

void	setVM	IFN1(IBOOL, val)
{
	(*(Cpu.SetVM))(val);
}

void	setAC	IFN1(IBOOL, val)
{
	(*(Cpu.SetAC))(val);
}

void	setPE	IFN1(IBOOL, val)
{
	(*(Cpu.SetPE))(val);
}

void	setMP	IFN1(IBOOL, val)
{
	(*(Cpu.SetMP))(val);
}

void	setEM	IFN1(IBOOL, val)
{
	(*(Cpu.SetEM))(val);
}

void	setTS	IFN1(IBOOL, val)
{
	(*(Cpu.SetTS))(val);
}

void	setPG	IFN1(IBOOL, val)
{
	(*(Cpu.SetPG))(val);
}

void	setLDT_SELECTOR	IFN1(IU16, val)
{
	(*(Cpu.SetLDT_SELECTOR))(val);
}

void	setTR_SELECTOR	IFN1(IU16, val)
{
	(*(Cpu.SetTR_SELECTOR))(val);
}

IU8	getAL	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetAL))();
	return result;
}

IU8	getAH	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetAH))();
	return result;
}

IU16	getAX	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetAX))();
	return result;
}

IU32	getEAX	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEAX))();
	return result;
}

IU8	getBL	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetBL))();
	return result;
}

IU8	getBH	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetBH))();
	return result;
}

IU16	getBX	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetBX))();
	return result;
}

IU32	getEBX	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEBX))();
	return result;
}

IU8	getCL	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetCL))();
	return result;
}

IU8	getCH	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetCH))();
	return result;
}

IU16	getCX	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetCX))();
	return result;
}

IU32	getECX	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetECX))();
	return result;
}

IU8	getDL	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetDL))();
	return result;
}

IU8	getDH	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetDH))();
	return result;
}

IU16	getDX	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetDX))();
	return result;
}

IU32	getEDX	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEDX))();
	return result;
}

IU16	getSI	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetSI))();
	return result;
}

IU32	getESI	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetESI))();
	return result;
}

IU16	getDI	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetDI))();
	return result;
}

IU32	getEDI	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEDI))();
	return result;
}

IU16	getSP	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetSP))();
	return result;
}

IU32	getESP	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetESP))();
	return result;
}

IU16	getBP	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetBP))();
	return result;
}

IU32	getEBP	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEBP))();
	return result;
}

IU16	getIP	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetIP))();
	return result;
}

IU32	getEIP	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEIP))();
	return result;
}

IU16	getCS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetCS))();
	return result;
}

IU16	getSS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetSS))();
	return result;
}

IU16	getDS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetDS))();
	return result;
}

IU16	getES	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetES))();
	return result;
}

IU16	getFS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetFS))();
	return result;
}

IU16	getGS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetGS))();
	return result;
}

IU32	getEFLAGS	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetEFLAGS))();
	return result;
}

IU16	getSTATUS	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetSTATUS))();
	return result;
}

IU8	getIOPL	IFN0()
{
	IU8 result;
	result = (*(Cpu.GetIOPL))();
	return result;
}

IU16	getMSW	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetMSW))();
	return result;
}

IU32	getCR0	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetCR0))();
	return result;
}

IU32	getCR2	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetCR2))();
	return result;
}

IU32	getCR3	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetCR3))();
	return result;
}

IBOOL	getCF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetCF))();
	return result;
}

IBOOL	getPF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetPF))();
	return result;
}

IBOOL	getAF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetAF))();
	return result;
}

IBOOL	getZF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetZF))();
	return result;
}

IBOOL	getSF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetSF))();
	return result;
}

IBOOL	getTF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetTF))();
	return result;
}

IBOOL	getIF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetIF))();
	return result;
}

IBOOL	getDF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetDF))();
	return result;
}

IBOOL	getOF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetOF))();
	return result;
}

IBOOL	getNT	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetNT))();
	return result;
}

IBOOL	getRF	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetRF))();
	return result;
}

IBOOL	getVM	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetVM))();
	return result;
}

IBOOL	getAC	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetAC))();
	return result;
}

IBOOL	getPE	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetPE))();
	return result;
}

IBOOL	getMP	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetMP))();
	return result;
}

IBOOL	getEM	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetEM))();
	return result;
}

IBOOL	getTS	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetTS))();
	return result;
}

IBOOL	getET	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetET))();
	return result;
}

IBOOL	getNE	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetNE))();
	return result;
}

IBOOL	getWP	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetWP))();
	return result;
}

IBOOL	getPG	IFN0()
{
	IBOOL result;
	result = (*(Cpu.GetPG))();
	return result;
}

IU32	getGDT_BASE	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetGDT_BASE))();
	return result;
}

IU16	getGDT_LIMIT	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetGDT_LIMIT))();
	return result;
}

IU32	getIDT_BASE	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetIDT_BASE))();
	return result;
}

IU16	getIDT_LIMIT	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetIDT_LIMIT))();
	return result;
}

IU16	getLDT_SELECTOR	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetLDT_SELECTOR))();
	return result;
}

IU32	getLDT_BASE	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetLDT_BASE))();
	return result;
}

IU32	getLDT_LIMIT	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetLDT_LIMIT))();
	return result;
}

IU16	getTR_SELECTOR	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetTR_SELECTOR))();
	return result;
}

IU32	getTR_BASE	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetTR_BASE))();
	return result;
}

IU32	getTR_LIMIT	IFN0()
{
	IU32 result;
	result = (*(Cpu.GetTR_LIMIT))();
	return result;
}

IU16	getTR_AR	IFN0()
{
	IU16 result;
	result = (*(Cpu.GetTR_AR))();
	return result;
}

IUH	host_get_q_calib_val	IFN0()
{
	IUH calibrate;
	calibrate = (*(Cpu.GetJumpCalibrateVal))();
	return calibrate;
}

IUH	host_get_jump_restart	IFN0()
{
	IUH initval;
	initval = (*(Cpu.GetJumpInitialVal))();
	return initval;
}

void	host_set_jump_restart	IFN1(IUH, initialVal)
{
	(*(Cpu.SetJumpInitialVal))(initialVal);
}

void	setEOIEnableAddr	IFN1(IU8 *, initialVal)
{
	(*(Cpu.SetEOIEnable))(initialVal);
}

void	setAddProfileDataPtr	IFN1(IHP, initialVal)
{
	(*(Cpu.SetAddProfileData))(initialVal);
}

void	setMaxProfileDataAddr	IFN1(IHP, initialVal)
{
	(*(Cpu.SetMaxProfileData))(initialVal);
}

IHP	getAddProfileDataAddr	IFN0()
{
	IHP result;
	result = (*(Cpu.GetAddProfileDataAddr))();
	return result;
}

void	PurgeLostIretHookLine	IFN1(IU16, lineNum)
{
	(*(Cpu.PurgeLostIretHookLine))(lineNum);
}

IHP	getSadInfoTable	IFN0()
{
	IHP tabPtr;
	tabPtr = (*((*(Cpu.Private)).GetSadInfoTable))();
	return tabPtr;
}

IBOOL	setGDT_BASE_LIMIT	IFN2(IU32, base, IU16, limit)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetGDT_BASE_LIMIT))(base, limit);
	return Success;
}

IBOOL	setIDT_BASE_LIMIT	IFN2(IU32, base, IU16, limit)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetIDT_BASE_LIMIT))(base, limit);
	return Success;
}

IBOOL	setLDT_BASE_LIMIT	IFN2(IU32, base, IU32, limit)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetLDT_BASE_LIMIT))(base, limit);
	return Success;
}

IBOOL	setTR_BASE_LIMIT	IFN2(IU32, base, IU32, limit)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetTR_BASE_LIMIT))(base, limit);
	return Success;
}

IBOOL	setTR_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetTR_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setCS_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetCS_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setSS_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetSS_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setDS_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetDS_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setES_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetES_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setFS_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetFS_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

IBOOL	setGS_BASE_LIMIT_AR	IFN3(IU32, base, IU32, limit, IU16, ar)
{
	IBOOL Success;
	Success = (*((*(Cpu.Private)).SetGS_BASE_LIMIT_AR))(base, limit, ar);
	return Success;
}

void	setCS_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetCS_SELECTOR))(val);
}

void	setSS_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetSS_SELECTOR))(val);
}

void	setDS_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetDS_SELECTOR))(val);
}

void	setES_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetES_SELECTOR))(val);
}

void	setFS_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetFS_SELECTOR))(val);
}

void	setGS_SELECTOR	IFN1(IU16, val)
{
	(*((*(Cpu.Private)).SetGS_SELECTOR))(val);
}

IU16	getCS_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetCS_SELECTOR))();
	return result;
}

IU16	getSS_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetSS_SELECTOR))();
	return result;
}

IU16	getDS_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetDS_SELECTOR))();
	return result;
}

IU16	getES_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetES_SELECTOR))();
	return result;
}

IU16	getFS_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetFS_SELECTOR))();
	return result;
}

IU16	getGS_SELECTOR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetGS_SELECTOR))();
	return result;
}

IU32	getCS_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetCS_BASE))();
	return result;
}

IU32	getSS_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetSS_BASE))();
	return result;
}

IU32	getDS_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetDS_BASE))();
	return result;
}

IU32	getES_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetES_BASE))();
	return result;
}

IU32	getFS_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetFS_BASE))();
	return result;
}

IU32	getGS_BASE	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetGS_BASE))();
	return result;
}

IU32	getCS_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetCS_LIMIT))();
	return result;
}

IU32	getSS_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetSS_LIMIT))();
	return result;
}

IU32	getDS_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetDS_LIMIT))();
	return result;
}

IU32	getES_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetES_LIMIT))();
	return result;
}

IU32	getFS_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetFS_LIMIT))();
	return result;
}

IU32	getGS_LIMIT	IFN0()
{
	IU32 result;
	result = (*((*(Cpu.Private)).GetGS_LIMIT))();
	return result;
}

IU16	getCS_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetCS_AR))();
	return result;
}

IU16	getSS_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetSS_AR))();
	return result;
}

IU16	getDS_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetDS_AR))();
	return result;
}

IU16	getES_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetES_AR))();
	return result;
}

IU16	getFS_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetFS_AR))();
	return result;
}

IU16	getGS_AR	IFN0()
{
	IU16 result;
	result = (*((*(Cpu.Private)).GetGS_AR))();
	return result;
}

IUH	getCPL	IFN0()
{
	IUH result;
	result = (*((*(Cpu.Private)).GetCPL))();
	return result;
}

void	setCPL	IFN1(IUH, prot)
{
	(*((*(Cpu.Private)).SetCPL))(prot);
}

void	getCpuState	IFN1(TypeCpuStateRECptr, state)
{
	(*((*(Cpu.Private)).GetCpuState))(state);
}

void	setCpuState	IFN1(TypeCpuStateRECptr, state)
{
	(*((*(Cpu.Private)).SetCpuState))(state);
}

void	initNanoCpu	IFN1(IU32, variety)
{
	(*((*(Cpu.Private)).InitNanoCpu))(variety);
}

void	prepareBlocksToCompile	IFN1(IU32, variety)
{
	(*((*(Cpu.Private)).PrepareBlocksToCompile))(variety);
}

void	setRegConstraint	IFN2(IU32, regId, IU8, constraintType)
{
	(*((*(Cpu.Private)).SetRegConstraint))(regId, constraintType);
}

void	growRecPool	IFN0()
{
	(*((*(Cpu.Private)).GrowRecPool))();
}

void	BpiCompileBPI	IFN1(char *, instructions)
{
	(*((*(Cpu.Private)).BpiCompileBPI))(instructions);
}

void	trashIntelregisters	IFN0()
{
	(*((*(Cpu.Private)).TrashIntelRegisters))();
}

void	FmDeleteAllStructures	IFN1(IU32, newCR0)
{
	(*((*(Cpu.Private)).FmDeleteAllStructures))(newCR0);
}

TypeConstraintBitMapRECptr	constraintsFromUnivEpcPtr	IFN1(TypeEntryPointCacheRECptr, univ)
{
	TypeConstraintBitMapRECptr result;
	result = (*((*(Cpu.Private)).ConstraintsFromUnivEpcPtr))(univ);
	return result;
}

TypeConstraintBitMapRECptr	constraintsFromUnivHandle	IFN1(IU16, handle)
{
	TypeConstraintBitMapRECptr result;
	result = (*((*(Cpu.Private)).ConstraintsFromUnivHandle))(handle);
	return result;
}

IU32	sas_memory_size	IFN0()
{
	IU32 result;
	result = (*(Sas.Sas_memory_size))();
	return result;
}

void	sas_connect_memory	IFN3(IU32, lo_addr, IU32, Int_addr, SAS_MEM_TYPE, type)
{
	(*(Sas.Sas_connect_memory))(lo_addr, Int_addr, type);
}

void	sas_enable_20_bit_wrapping	IFN0()
{
	(*(Sas.Sas_enable_20_bit_wrapping))();
}

void	sas_disable_20_bit_wrapping	IFN0()
{
	(*(Sas.Sas_disable_20_bit_wrapping))();
}

IBOOL	sas_twenty_bit_wrapping_enabled	IFN0()
{
	IBOOL result;
	result = (*(Sas.Sas_twenty_bit_wrapping_enabled))();
	return result;
}

SAS_MEM_TYPE	sas_memory_type	IFN1(IU32, addr)
{
	SAS_MEM_TYPE result;
	result = (*(Sas.Sas_memory_type))(addr);
	return result;
}

IU8	sas_hw_at	IFN1(IU32, addr)
{
	IU8 result;
	result = (*(Sas.Sas_hw_at))(addr);
	return result;
}

IU16	sas_w_at	IFN1(IU32, addr)
{
	IU16 result;
	result = (*(Sas.Sas_w_at))(addr);
	return result;
}

IU32	sas_dw_at	IFN1(IU32, addr)
{
	IU32 result;
	result = (*(Sas.Sas_dw_at))(addr);
	return result;
}

IU8	sas_hw_at_no_check	IFN1(IU32, addr)
{
	IU8 result;
	result = (*(Sas.Sas_hw_at_no_check))(addr);
	return result;
}

IU16	sas_w_at_no_check	IFN1(IU32, addr)
{
	IU16 result;
	result = (*(Sas.Sas_w_at_no_check))(addr);
	return result;
}

IU32	sas_dw_at_no_check	IFN1(IU32, addr)
{
	IU32 result;
	result = (*(Sas.Sas_dw_at_no_check))(addr);
	return result;
}

void	sas_store	IFN2(IU32, addr, IU8, val)
{
	(*(Sas.Sas_store))(addr, val);
}

void	sas_storew	IFN2(IU32, addr, IU16, val)
{
	(*(Sas.Sas_storew))(addr, val);
}

void	sas_storedw	IFN2(IU32, addr, IU32, val)
{
	(*(Sas.Sas_storedw))(addr, val);
}

void	sas_store_no_check	IFN2(IU32, addr, IU8, val)
{
	(*(Sas.Sas_store_no_check))(addr, val);
}

void	sas_storew_no_check	IFN2(IU32, addr, IU16, val)
{
	(*(Sas.Sas_storew_no_check))(addr, val);
}

void	sas_storedw_no_check	IFN2(IU32, addr, IU32, val)
{
	(*(Sas.Sas_storedw_no_check))(addr, val);
}

void	sas_loads	IFN3(IU32, addr, IU8 *, stringptr, IU32, len)
{
	(*(Sas.Sas_loads))(addr, stringptr, len);
}

void	sas_stores	IFN3(IU32, addr, IU8 *, stringptr, IU32, len)
{
	(*(Sas.Sas_stores))(addr, stringptr, len);
}

void	sas_loads_no_check	IFN3(IU32, addr, IU8 *, stringptr, IU32, len)
{
	(*(Sas.Sas_loads_no_check))(addr, stringptr, len);
}

void	sas_stores_no_check	IFN3(IU32, addr, IU8 *, stringptr, IU32, len)
{
	(*(Sas.Sas_stores_no_check))(addr, stringptr, len);
}

void	sas_move_bytes_forward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_bytes_forward))(src, dest, len);
}

void	sas_move_words_forward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_words_forward))(src, dest, len);
}

void	sas_move_doubles_forward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_doubles_forward))(src, dest, len);
}

void	sas_move_bytes_backward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_bytes_backward))(src, dest, len);
}

void	sas_move_words_backward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_words_backward))(src, dest, len);
}

void	sas_move_doubles_backward	IFN3(IU32, src, IU32, dest, IU32, len)
{
	(*(Sas.Sas_move_doubles_backward))(src, dest, len);
}

void	sas_fills	IFN3(IU32, dest, IU8, val, IU32, len)
{
	(*(Sas.Sas_fills))(dest, val, len);
}

void	sas_fillsw	IFN3(IU32, dest, IU16, val, IU32, len)
{
	(*(Sas.Sas_fillsw))(dest, val, len);
}

void	sas_fillsdw	IFN3(IU32, dest, IU32, val, IU32, len)
{
	(*(Sas.Sas_fillsdw))(dest, val, len);
}

IU8 *	sas_scratch_address	IFN1(IU32, length)
{
	IU8 * addr;
	addr = (*(Sas.Sas_scratch_address))(length);
	return addr;
}

IU8 *	sas_transbuf_address	IFN2(IU32, dest_addr, IU32, length)
{
	IU8 * addr;
	addr = (*(Sas.Sas_transbuf_address))(dest_addr, length);
	return addr;
}

void	sas_loads_to_transbuf	IFN3(IU32, src_addr, IU8 *, dest_addr, IU32, length)
{
	(*(Sas.Sas_loads_to_transbuf))(src_addr, dest_addr, length);
}

void	sas_stores_from_transbuf	IFN3(IU32, dest_addr, IU8 *, src_addr, IU32, length)
{
	(*(Sas.Sas_stores_from_transbuf))(dest_addr, src_addr, length);
}

IU8	sas_PR8	IFN1(IU32, addr)
{
	IU8 result;
	result = (*(Sas.Sas_PR8))(addr);
	return result;
}

IU16	sas_PR16	IFN1(IU32, addr)
{
	IU16 result;
	result = (*(Sas.Sas_PR16))(addr);
	return result;
}

IU32	sas_PR32	IFN1(IU32, addr)
{
	IU32 result;
	result = (*(Sas.Sas_PR32))(addr);
	return result;
}

void	sas_PW8	IFN2(IU32, addr, IU8, val)
{
	(*(Sas.Sas_PW8))(addr, val);
}

void	sas_PW16	IFN2(IU32, addr, IU16, val)
{
	(*(Sas.Sas_PW16))(addr, val);
}

void	sas_PW32	IFN2(IU32, addr, IU32, val)
{
	(*(Sas.Sas_PW32))(addr, val);
}

void	sas_PW8_no_check	IFN2(IU32, addr, IU8, val)
{
	(*(Sas.Sas_PW8_no_check))(addr, val);
}

void	sas_PW16_no_check	IFN2(IU32, addr, IU16, val)
{
	(*(Sas.Sas_PW16_no_check))(addr, val);
}

void	sas_PW32_no_check	IFN2(IU32, addr, IU32, val)
{
	(*(Sas.Sas_PW32_no_check))(addr, val);
}

IU8 *	getPtrToPhysAddrByte	IFN1(IU32, phys_addr)
{
	IU8 * host_address;
	host_address = (*(Sas.SasPtrToPhysAddrByte))(phys_addr);
	return host_address;
}

IU8 *	get_byte_addr	IFN1(IU32, phys_addr)
{
	IU8 * host_address;
	host_address = (*(Sas.Sas_get_byte_addr))(phys_addr);
	return host_address;
}

IU8 *	getPtrToLinAddrByte	IFN1(IU32, lin_addr)
{
	IU8 * host_address;
	host_address = (*(Sas.SasPtrToLinAddrByte))(lin_addr);
	return host_address;
}

IBOOL	sas_init_pm_selectors	IFN2(IU16, sel1, IU16, sel2)
{
	IBOOL redundant;
	redundant = (*(Sas.SasRegisterVirtualSelectors))(sel1, sel2);
	return redundant;
}

void	sas_overwrite_memory	IFN2(IU32, addr, IU32, length)
{
	(*(Sas.Sas_overwrite_memory))(addr, length);
}

void	sas_PWS	IFN3(IU32, dest, IU8 *, src, IU32, len)
{
	(*(Sas.Sas_PWS))(dest, src, len);
}

void	sas_PWS_no_check	IFN3(IU32, dest, IU8 *, src, IU32, len)
{
	(*(Sas.Sas_PWS_no_check))(dest, src, len);
}

void	sas_PRS	IFN3(IU32, src, IU8 *, dest, IU32, len)
{
	(*(Sas.Sas_PRS))(src, dest, len);
}

void	sas_PRS_no_check	IFN3(IU32, src, IU8 *, dest, IU32, len)
{
	(*(Sas.Sas_PRS_no_check))(src, dest, len);
}

IBOOL	sas_PigCmpPage	IFN3(IU32, src, IU8 *, dest, IU32, len)
{
	IBOOL comp_OK;
	comp_OK = (*(Sas.Sas_PigCmpPage))(src, dest, len);
	return comp_OK;
}

IBOOL	IOVirtualised	IFN4(IU16, port, IU32 *, value, IU32, offset, IU8, width)
{
	IBOOL isVirtual;
	isVirtual = (*(Sas.IOVirtualised))(port, value, offset, width);
	return isVirtual;
}

#endif	/* PROD */
/*======================================== END ========================================*/