From 60b94f7c15926e107cb6a6f8883ec8d7bc15854b Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Fri, 29 Nov 2019 07:25:35 +0100 Subject: i960.h: fixed my oversight (nw) --- src/devices/cpu/i960/i960.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/i960/i960.h b/src/devices/cpu/i960/i960.h index 4375ebed4fc..3cc34b73f1f 100644 --- a/src/devices/cpu/i960/i960.h +++ b/src/devices/cpu/i960/i960.h @@ -106,8 +106,8 @@ private: void burst_stall_save(uint32_t t1, uint32_t t2, int index, int size, bool iswriteop); struct { - uint32_t t1,t2 = 0; - int index,size = 0; + uint32_t t1 = 0, t2 = 0; + int index = 0, size = 0; bool burst_mode = false; bool iswriteop = false; }m_stall_state; -- cgit v1.2.3