summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2019-11-29 07:25:35 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2019-11-29 07:25:35 +0100
commit60b94f7c15926e107cb6a6f8883ec8d7bc15854b (patch)
treee35e7ffe7e4deabe6df1a6bcb823b3034709c8c7
parent8dbea98e20bf2d26810784b840174fcad8db7b7e (diff)
i960.h: fixed my oversight (nw)
-rw-r--r--src/devices/cpu/i960/i960.h4
1 files 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;