~random-stuff/supermodel/supermodel-trunk

« back to all changes in this revision

Viewing changes to Src/CPU/68K/68K.h

  • Committer: dukeeeey
  • Date: 2018-01-22 18:27:51 UTC
  • Revision ID: svn-v4:48849e4c-6218-0410-9df5-a815ca0b3254:trunk:706
fix header files

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
//#endif
46
46
 
47
47
#ifdef SUPERMODEL_DEBUGGER
48
 
class CMusashi68KDebug;
 
48
namespace Debugger {
 
49
        class CMusashi68KDebug;
 
50
}
49
51
#endif // SUPERMODEL_DEBUGGER
50
52
 
51
53
/******************************************************************************
75
77
        IBus                    *Bus;                   // memory handlers
76
78
        int                             (*IRQAck)(int); // IRQ acknowledge callback
77
79
#ifdef SUPERMODEL_DEBUGGER
78
 
        CMusashi68KDebug *Debug;        // holds debugger (if attached)
 
80
        Debugger::CMusashi68KDebug *Debug;        // holds debugger (if attached)
79
81
#endif // SUPERMODEL_DEBUGGER
80
82
 
81
83
        SM68KCtx(void)
93
95
                Bus = NULL;
94
96
                IRQAck = NULL;
95
97
        }
96
 
} M68KCtx;
 
98
} M68KCtx;;
97
99
 
98
100
 
99
101
/******************************************************************************