mirror of
https://github.com/open-simh/simh.git
synced 2026-01-26 04:02:39 +00:00
simh 3.10-RC2
3.10 is mostly an attempt to get aligned with the current head of the GitHub 4.0 sources. While the core libraries and SCP have diverged too far for real forward and backward compatibility, enough 4.0 workalikes have been added to allow much closer convergence of the two streams. 3.10 will provide the basis for my future simulation work.
This commit is contained in:
committed by
Mark Pizzolato
parent
a2bc6a9508
commit
5ccef2e6f8
@@ -54,6 +54,8 @@
|
||||
implemented by setting signals with an atomic compare-and-swap.
|
||||
The signals may be polled with non-atomic operations but must be
|
||||
verified with an atomic compare-and-swap.
|
||||
|
||||
21-Jul-18 RMS Fixed missing size multiplier in reset (Mark Pizzolato)
|
||||
*/
|
||||
|
||||
#include "pdp11_defs.h"
|
||||
@@ -395,7 +397,7 @@ ucb_buf = 0;
|
||||
CLR_INT (UCA);
|
||||
CLR_INT (UCB);
|
||||
if (uc15_shmem == NULL) { /* allocate shared state */
|
||||
r = sim_shmem_open ("UC15SharedState", UC15_STATE_SIZE * sizeof(int32), &uc15_shmem, &basead);
|
||||
r = sim_shmem_open ("UC15SharedState", UC15_STATE_SIZE * sizeof (int32), &uc15_shmem, &basead);
|
||||
if (r != SCPE_OK)
|
||||
return r;
|
||||
uc15_shstate = (int32 *) basead;
|
||||
|
||||
Reference in New Issue
Block a user