1
0
mirror of https://github.com/simh/simh.git synced 2026-02-18 21:38:16 +00:00

Compiler indicated cleanups

This commit is contained in:
Mark Pizzolato
2014-01-06 13:14:16 -08:00
parent 76fc90f405
commit 0e753b7c45
9 changed files with 31 additions and 10 deletions

View File

@@ -278,7 +278,7 @@ return;
struct reglink { /* register linkage */
uint32 low; /* low addr */
uint32 high; /* high addr */
t_stat (*read)(int32 pa); /* read routine */
int32 (*read)(int32 pa); /* read routine */
void (*write)(int32 pa, int32 val, int32 lnt); /* write routine */
};