From 17491577c71da75d8471a63e4c8f3454aa0eb0aa Mon Sep 17 00:00:00 2001 From: Bill Beech Date: Tue, 2 Oct 2018 14:26:40 -0700 Subject: [PATCH] Intel-Systems: Correct size of port variable to uint16 --- Intel-Systems/common/i8080.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intel-Systems/common/i8080.c b/Intel-Systems/common/i8080.c index e8b1114d..7d66c6c6 100644 --- a/Intel-Systems/common/i8080.c +++ b/Intel-Systems/common/i8080.c @@ -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);