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

BESM6: Fix new compiler found issues

This commit is contained in:
Mark Pizzolato 2024-01-17 16:38:42 -10:00
parent 720531073a
commit da37924c8c
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ unsigned char FS[2];
REG fs_reg[] = {
{ REGDATA ( "Готов", READY, 2, 2, 14, 1, NULL, NULL, 0, 0, 0) },
{ ORDATA ( "ФС1500-1", FS[0], 8) },
{ ORDATA ( "ФС1500-2", FS[2], 8) },
{ ORDATA ( "ФС1500-2", FS[1], 8) },
{ 0 }
};

View File

@ -74,7 +74,7 @@ int tty_typed [TTY_MAX+1], tty_instate [TTY_MAX+1];
/* For all lines */
time_t tty_last_time [LINES_MAX+1];
int tty_idle_count [LINES_MAX+1];
int tty_lnorder[LINES_MAX+1] = { -1 };
int32 tty_lnorder[LINES_MAX+1] = { -1 };
/* The serial interrupt generator frequency, common for all VT lines */
int tty_rate = 300;