1
0
mirror of https://github.com/simh/simh.git synced 2026-01-27 20:37:50 +00:00

Fix build on VMS (IA64)

This commit is contained in:
Mark Pizzolato
2012-12-19 12:45:03 -08:00
parent 2c14136473
commit 3346f4a32c
5 changed files with 18 additions and 11 deletions

View File

@@ -645,7 +645,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 */
};