diff options
Diffstat (limited to 'src/devices/cpu/avr8/avr8.cpp')
-rw-r--r-- | src/devices/cpu/avr8/avr8.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/cpu/avr8/avr8.cpp b/src/devices/cpu/avr8/avr8.cpp index d043e466876..085700da53f 100644 --- a/src/devices/cpu/avr8/avr8.cpp +++ b/src/devices/cpu/avr8/avr8.cpp @@ -2973,15 +2973,15 @@ void avr8_device::execute_set_input(int inputnum, int state) void avr8_device::execute_run() { - UINT32 op = 0; - INT32 offs = 0; - UINT8 rd = 0; - UINT8 rr = 0; - UINT8 res = 0; - UINT16 pd = 0; - UINT32 pd32 = 0; - INT16 sd = 0; - INT32 opcycles = 1; + UINT32 op; + INT32 offs; + UINT8 rd; + UINT8 rr; + UINT8 res; + UINT16 pd; + UINT32 pd32; + INT16 sd; + INT32 opcycles; while (m_icount > 0) { |