1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-14 23:56:22 +00:00

Intel-Systems: Correct size of port variable to uint16

This commit is contained in:
Bill Beech 2018-10-02 14:26:40 -07:00 committed by Mark Pizzolato
parent b759d73fe5
commit 17491577c7

View File

@ -170,7 +170,7 @@ uint32 int_req = 0; /* Interrupt request */
int32 PCX; /* External view of PC */
int32 PC;
UNIT *uptr;
uint32 port; //port used in any IN/OUT
uint16 port; //port used in any IN/OUT
/* function prototypes */
void set_cpuint(int32 int_num);