mirror of
https://github.com/open-simh/simh.git
synced 2026-05-05 07:33:56 +00:00
simh 3.10-RC1a
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
140ab5b350
commit
3fada8da5a
@@ -130,7 +130,7 @@ int32 rf72 (int32 dev, int32 pulse, int32 dat);
|
||||
int32 rf_iors (void);
|
||||
t_stat rf_svc (UNIT *uptr);
|
||||
t_stat rf_reset (DEVICE *dptr);
|
||||
int32 rf_updsta (int32 new);
|
||||
int32 rf_updsta (int32 newst);
|
||||
t_stat rf_attach (UNIT *uptr, char *cptr);
|
||||
t_stat rf_set_size (UNIT *uptr, int32 val, char *cptr, void *desc);
|
||||
|
||||
@@ -316,9 +316,9 @@ return SCPE_OK;
|
||||
|
||||
/* Update status */
|
||||
|
||||
int32 rf_updsta (int32 news)
|
||||
int32 rf_updsta (int32 newst)
|
||||
{
|
||||
rf_sta = (rf_sta | news) & ~(RFS_ERR | RFS_CLR);
|
||||
rf_sta = (rf_sta | newst) & ~(RFS_ERR | RFS_CLR);
|
||||
if (rf_sta & RFS_EFLGS)
|
||||
rf_sta = rf_sta | RFS_ERR;
|
||||
if ((rf_sta & (RFS_ERR | RFS_DON)) && (rf_sta & RFS_IE))
|
||||
|
||||
Reference in New Issue
Block a user