1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

Fix UTF-8 encoding for four files

This commit is contained in:
Peter Schorn 2023-04-02 12:52:23 -10:00 committed by Mark Pizzolato
parent b4e3dad8a4
commit d808d3ba3a
4 changed files with 389 additions and 389 deletions

View File

@ -1676,7 +1676,7 @@ if (xidex) { /* is EMA declared? */
} }
} /* not EMA reference */ } /* not EMA reference */
ndim = ReadW(dtbl++); ndim = ReadW(dtbl++);
if (ndim<0) goto em15; /* negative ´dimensions */ if (ndim<0) goto em15; /* negative dimensions */
sum = 0; /* accu for index calc */ sum = 0; /* accu for index calc */
while (ndim > 0) { while (ndim > 0) {
MR = ReadW (atbl++); /* fetch address of A(N) */ MR = ReadW (atbl++); /* fetch address of A(N) */

View File

@ -22,7 +22,7 @@
cpu IBM 650 central processor cpu IBM 650 central processor
From Wikipedia: The IBM 650 Magnetic Drum Data-Processing Machine is one of From Wikipedia: The IBM 650 Magnetic Drum Data-Processing Machine is one of
IBM's early computers, and the worlds first mass-produced computer. It was IBM's early computers, and the worlds first mass-produced computer. It was
announced in 1953 and in 1956 enhanced as the IBM 650 RAMAC with the announced in 1953 and in 1956 enhanced as the IBM 650 RAMAC with the
addition of up to four disk storage units. Almost 2,000 systems were addition of up to four disk storage units. Almost 2,000 systems were
produced, the last in 1962. produced, the last in 1962.

View File

@ -680,7 +680,7 @@ static t_stat sca_svc (UNIT *uptr)
if (sca_dsw & SCA_DSW_READY) { /* if connected */ if (sca_dsw & SCA_DSW_READY) { /* if connected */
/* if rcvd data buffer is empty, and if in one of the receive states, checÄk for arrival of received data */ /* if rcvd data buffer is empty, and if in one of the receive states, check for arrival of received data */
if (in_receive_state() && sca_rcvptr >= sca_nrcvd) if (in_receive_state() && sca_rcvptr >= sca_nrcvd)
sca_check_indata(); sca_check_indata();

View File

@ -335,7 +335,7 @@ int32 old_tick_in_usecs = tick_in_usecs;
* time base. This allows a maximum interval of 223 ms, which is almost 140 * time base. This allows a maximum interval of 223 ms, which is almost 140
* minutes. At the end of each interval, the :microcode sets Interval Done * minutes. At the end of each interval, the :microcode sets Interval Done
* (RDAPR bit 30), requesting an interrupt on the level assigned to the system * (RDAPR bit 30), requesting an interrupt on the level assigned to the system
* flags (§4.8). In a separate workspace register, the microcode starts with * flags (§4.8). In a separate workspace register, the microcode starts with
* the given period, decrements it by 4096 (2**12) every time the millisecond * the given period, decrements it by 4096 (2**12) every time the millisecond
* counter overflows, and sets the flag when the contents of this "time to go" * counter overflows, and sets the flag when the contents of this "time to go"
* register reach zero or less. Hence the countdown is by milliseconds, and * register reach zero or less. Hence the countdown is by milliseconds, and