the Debug param context --HG-- extra : convert_revision : 40e9dcfa9faedbe0c90a43f908f20a7c14ded6a4
20 lines
341 B
OpenEdge ABL
20 lines
341 B
OpenEdge ABL
%module debug
|
|
|
|
%{
|
|
// include these files when compiling debug_wrap.cc
|
|
#include "sim/host.hh"
|
|
%}
|
|
|
|
%include "stdint.i"
|
|
%include "sim/host.hh"
|
|
|
|
%inline %{
|
|
extern void schedBreakCycle(Tick when);
|
|
%}
|
|
|
|
%wrapper %{
|
|
// fix up module name to reflect the fact that it's inside the m5 package
|
|
#undef SWIG_name
|
|
#define SWIG_name "m5.internal._debug"
|
|
%}
|