File tree 9 files changed +21
-15
lines changed
9 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 1
1
/* id_pas.c: Interdata programmable async line adapter simulator
2
2
3
- Copyright (c) 2001-2012 , Robert M Supnik
3
+ Copyright (c) 2001-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
pas Programmable asynchronous line adapter(s)
27
27
28
+ 11-Oct-13 RMS Poll PAS immediately to pick up initial connect
28
29
18-Apr-12 RMS Revised to use clock coscheduling
29
30
21-Mar-12 RMS Fixed TT_GET_MODE test to use TTUF_MODE_x (Michael Bloom)
30
31
19-Nov-08 RMS Revised for common TMXR show routines
@@ -485,7 +486,7 @@ t_stat r;
485
486
r = tmxr_attach (& pas_desc , uptr , cptr ); /* attach */
486
487
if (r != SCPE_OK ) /* error */
487
488
return r ;
488
- sim_activate (uptr , 100 ); /* quick poll */
489
+ sim_activate (uptr , 0 ); /* immediate poll */
489
490
return SCPE_OK ;
490
491
}
491
492
Original file line number Diff line number Diff line change 1
1
/* pdp1_dcs.c: PDP-1D terminal multiplexor simulator
2
2
3
- Copyright (c) 2006-2008 , Robert M Supnik
3
+ Copyright (c) 2006-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
dcs Type 630 data communications subsystem
27
27
28
+ 11-Oct-2013 RMS Poll DCS immediately after attach to pick up connect
28
29
19-Nov-2008 RMS Revised for common TMXR show routines
29
30
30
31
This module implements up to 32 individual serial interfaces.
@@ -347,7 +348,7 @@ t_stat r;
347
348
r = tmxr_attach (& dcs_desc , uptr , cptr ); /* attach */
348
349
if (r != SCPE_OK ) /* error */
349
350
return r ;
350
- sim_activate_abs (uptr , tmxr_poll ); /* start poll */
351
+ sim_activate_abs (uptr , 0 ); /* start poll at once */
351
352
return SCPE_OK ;
352
353
}
353
354
Original file line number Diff line number Diff line change @@ -1320,7 +1320,7 @@ return;
1320
1320
(a^x)(b^y) TMP
1321
1321
1322
1322
Note that the low bit of each digit is the same as the low bit of
1323
- the sum of the digits, ignoring the cary , since the low bit of the
1323
+ the sum of the digits, ignoring the carry , since the low bit of the
1324
1324
sum is the xor of the bits.
1325
1325
1326
1326
Now compute I+J+66 to get decimal addition with carry forced left
Original file line number Diff line number Diff line change 1
1
/* pdp11_dc.c: PDP-11 DC11 multiple terminal interface simulator
2
2
3
- Copyright (c) 1993-2012 , Robert M Supnik
3
+ Copyright (c) 1993-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
dci,dco DC11 terminal input/output
27
27
28
+ 11-Oct-2013 RMS Poll DCI immediately after attach to pick up connect
28
29
18-Apr-2012 RMS Modified to use clock coscheduling
29
30
17-Aug-2011 RMS Added AUTOCONFIGURE modifier
30
31
19-Nov-2008 RMS Revised for common TMXR show routines
@@ -557,7 +558,7 @@ t_stat r;
557
558
r = tmxr_attach (& dcx_desc , uptr , cptr ); /* attach */
558
559
if (r != SCPE_OK ) /* error? */
559
560
return r ;
560
- sim_activate (uptr , tmxr_poll ); /* start poll */
561
+ sim_activate (uptr , 0 ); /* start poll at once */
561
562
return SCPE_OK ;
562
563
}
563
564
Original file line number Diff line number Diff line change 1
1
/* pdp11_dl.c: PDP-11 multiple terminal interface simulator
2
2
3
- Copyright (c) 1993-2012 , Robert M Supnik
3
+ Copyright (c) 1993-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
dli,dlo DL11 terminal input/output
27
27
28
+ 11-Oct-2013 RMS Poll DLI immediately after attach to pick up connect
28
29
18-Apr-2012 RMS Modified to use clock coscheduling
29
30
17-Aug-2011 RMS Added AUTOCONFIGURE modifier
30
31
19-Nov-2008 RMS Revised for common TMXR show routines
@@ -508,7 +509,7 @@ t_stat r;
508
509
r = tmxr_attach (& dlx_desc , uptr , cptr ); /* attach */
509
510
if (r != SCPE_OK ) /* error */
510
511
return r ;
511
- sim_activate (uptr , tmxr_poll ); /* start poll */
512
+ sim_activate (uptr , 0 ); /* start poll at once */
512
513
return SCPE_OK ;
513
514
}
514
515
Original file line number Diff line number Diff line change @@ -1617,7 +1617,7 @@ if ((uptr = rq_getucb (cp, lu))) { /* get unit */
1617
1617
cp -> pak [prv ].link = cp -> pak [tpkt ].link ;
1618
1618
break ;
1619
1619
}
1620
- prv = tpkt ;
1620
+ prv = tpkt ; /* no match, next */
1621
1621
}
1622
1622
}
1623
1623
if (tpkt ) { /* found target? */
Original file line number Diff line number Diff line change @@ -933,7 +933,7 @@ if ((uptr = tq_getucb (lu))) { /* get unit */
933
933
tq_pkt [prv ].link = tq_pkt [tpkt ].link ; /* unlink */
934
934
break ;
935
935
}
936
- prv = tpkt ;
936
+ prv = tpkt ; /* no match, next */
937
937
}
938
938
}
939
939
if (tpkt ) { /* found target? */
Original file line number Diff line number Diff line change 1
1
/* pdp18b_ttx.c: PDP-9/15 additional terminals simulator
2
2
3
- Copyright (c) 1993-2012 , Robert M Supnik
3
+ Copyright (c) 1993-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
ttix,ttox LT15/LT19 terminal input/output
27
27
28
+ 11-Oct-13 RMS Poll TTIX immediately to pick up initial connect
28
29
18-Apr-12 RMS Revised to use clock coscheduling
29
30
19-Nov-08 RMS Revised for common TMXR show routines
30
31
18-Jun-07 RMS Added UNIT_IDLE flag
@@ -396,7 +397,7 @@ t_stat r;
396
397
r = tmxr_attach (& ttx_desc , uptr , cptr ); /* attach */
397
398
if (r != SCPE_OK ) /* error */
398
399
return r ;
399
- sim_activate (uptr , tmxr_poll ); /* start poll */
400
+ sim_activate (uptr , 0 ); /* start poll at once */
400
401
return SCPE_OK ;
401
402
}
402
403
Original file line number Diff line number Diff line change 1
1
/* pdp8_ttx.c: PDP-8 additional terminals simulator
2
2
3
- Copyright (c) 1993-2012 , Robert M Supnik
3
+ Copyright (c) 1993-2013 , Robert M Supnik
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a
6
6
copy of this software and associated documentation files (the "Software"),
25
25
26
26
ttix,ttox PT08/KL8JA terminal input/output
27
27
28
+ 11-Oct-13 RMS Poll TTIX immediately to pick up initial connect (Mark Pizzolato)
28
29
18-Apr-12 RMS Revised to use clock coscheduling
29
30
19-Nov-08 RMS Revised for common TMXR show routines
30
31
07-Jun-06 RMS Added UNIT_IDLE flag
@@ -360,7 +361,7 @@ t_stat r;
360
361
r = tmxr_attach (& ttx_desc , uptr , cptr ); /* attach */
361
362
if (r != SCPE_OK ) /* error */
362
363
return r ;
363
- sim_activate (uptr , 0 ); /* start poll */
364
+ sim_activate (uptr , 0 ); /* start poll at once */
364
365
return SCPE_OK ;
365
366
}
366
367
You can’t perform that action at this time.
0 commit comments