--- mon/src/mon_z80.cpp 2000/10/15 15:07:16 1.1 +++ mon/src/mon_z80.cpp 2002/01/18 16:03:33 1.3 @@ -1,7 +1,7 @@ /* * mon_z80.cpp - Z80 disassembler * - * cxmon (C) 1997-2000 Christian Bauer, Marc Hellwig + * cxmon (C) 1997-2002 Christian Bauer, Marc Hellwig * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -334,7 +334,7 @@ static int disass_cb(SFILE *f, uint32 ad } // Decode mnemonic and addressing modes - char mnem, dst_mode = A_IMPL, src_mode = A_IMPL; + char mnem = M_ILLEGAL, dst_mode = A_IMPL, src_mode = A_IMPL; switch (op & 0xc0) { case 0x00: dst_mode = A_REG1;