mirror of
https://github.com/open-simh/simh.git
synced 2026-01-26 12:12:52 +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
@@ -722,11 +722,11 @@ return cy;
|
||||
void SubDstr (dstr_t *s1, dstr_t *s2, dstr_t *ds)
|
||||
{
|
||||
uint32 i;
|
||||
dstr_t compl;
|
||||
dstr_t complm;
|
||||
|
||||
for (i = 0; i < DSTRLNT; i++) /* 9's comp s2 */
|
||||
compl.val[i] = 0x99999999 - s1->val[i];
|
||||
AddDstr (&compl, s2, ds, 1); /* s1 + ~s2 + 1 */
|
||||
complm.val[i] = 0x99999999 - s1->val[i];
|
||||
AddDstr (&complm, s2, ds, 1); /* s1 + ~s2 + 1 */
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -261,7 +261,7 @@ typedef struct {
|
||||
uint32 tpos; /* to position */
|
||||
} DP_SNSTAB;
|
||||
|
||||
static char *dp_cname[] = {
|
||||
static const char *dp_cname[] = {
|
||||
"7240", "7270", "7260", "7275", "7265", "T3281"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user