View | Details | Raw Unified
Collapse All | Expand All

(-) gpsim-0.22.0-orig/cli/cmd_clear.cc (+1 lines)
 Lines 22-27    Link Here 
#include <iostream>
#include <iostream>
#include <iomanip>
#include <iomanip>
#include <string>
#include <string>
#include <typeinfo>
#include "command.h"
#include "command.h"
#include "cmd_clear.h"
#include "cmd_clear.h"
(-) gpsim-0.22.0-orig/cli/cmd_x.cc (-1 / +1 lines)
 Lines 22-28    Link Here 
#include <iostream>
#include <iostream>
#include <iomanip>
#include <iomanip>
#include <string>
#include <string>
#include <typeinfo>
#include "command.h"
#include "command.h"
#include "cmd_x.h"
#include "cmd_x.h"
(-) gpsim-0.22.0-orig/gui/gui_regwin.cc (+1 lines)
 Lines 23-28    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <typeinfo>
#include "../config.h"
#include "../config.h"
#ifdef HAVE_GUI
#ifdef HAVE_GUI
(-) gpsim-0.22.0-orig/gui/gui_src.cc (+1 lines)
 Lines 22-27    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <typeinfo>
#include "../config.h"
#include "../config.h"
#ifdef HAVE_GUI
#ifdef HAVE_GUI
(-) gpsim-0.22.0-orig/gui/gui_stack.cc (+1 lines)
 Lines 22-27    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <typeinfo>
#include "../config.h"
#include "../config.h"
#ifdef HAVE_GUI
#ifdef HAVE_GUI
(-) gpsim-0.22.0-orig/gui/gui_symbols.cc (+1 lines)
 Lines 22-27    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <typeinfo>
#include "../config.h"
#include "../config.h"
#ifdef HAVE_GUI
#ifdef HAVE_GUI
(-) gpsim-0.22.0-orig/gui/settings_exdbm.cc (-1 / +1 lines)
 Lines 20-26    Link Here 
Boston, MA 02111-1307, USA.  */
Boston, MA 02111-1307, USA.  */
#include "settings_exdbm.h"
#include "settings_exdbm.h"
#include <stdlib.h>
SettingsEXdbm::SettingsEXdbm(const char *appl_name)
SettingsEXdbm::SettingsEXdbm(const char *appl_name)
{
{
(-) gpsim-0.22.0-orig/modules/switch.cc (+1 lines)
 Lines 37-42    Link Here 
#include <sys/stat.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <fcntl.h>
#include <assert.h>
#include <assert.h>
#include <typeinfo>
#include <errno.h>
#include <errno.h>
#include <stdlib.h>
#include <stdlib.h>
(-) gpsim-0.22.0-orig/src/gpsim_object.cc (+1 lines)
 Lines 24-29    Link Here 
#include <stdio.h>
#include <stdio.h>
#include <ctype.h>
#include <ctype.h>
#include "gpsim_object.h"
#include "gpsim_object.h"
#include <cstring>
//========================================================================
//========================================================================
(-) gpsim-0.22.0-orig/src/modules.cc (+1 lines)
 Lines 28-33    Link Here 
#include <string>
#include <string>
#include <list>
#include <list>
#include <vector>
#include <vector>
#include <typeinfo>
#include "../config.h"
#include "../config.h"
(-) gpsim-0.22.0-orig/src/modules.h (+2 lines)
 Lines 31-36    Link Here 
#ifndef __MODULES_H__
#ifndef __MODULES_H__
#define __MODULES_H__
#define __MODULES_H__
#include <cstdlib>
#include <cstring>
#include <list>
#include <list>
#include <string>
#include <string>
#include <map>
#include <map>
(-) gpsim-0.22.0-orig/src/operator.cc (+1 lines)
 Lines 5-10    Link Here 
#include "symbol.h"
#include "symbol.h"
#include "processor.h"
#include "processor.h"
#include <typeinfo>
static bool isFloat(Value *v)
static bool isFloat(Value *v)
{
{
(-) gpsim-0.22.0-orig/src/processor.cc (+2 lines)
 Lines 51-56    Link Here 
#include "cmd_gpsim.h"
#include "cmd_gpsim.h"
#include "sim_context.h"
#include "sim_context.h"
#include <typeinfo>
//------------------------------------------------------------------------
//------------------------------------------------------------------------
// active_cpu  is a pointer to the pic processor that is currently 'active'. 
// active_cpu  is a pointer to the pic processor that is currently 'active'. 
// 'active' means that it's the one currently being simulated or the one
// 'active' means that it's the one currently being simulated or the one
(-) gpsim-0.22.0-orig/src/processor.h (-1 / +1 lines)
 Lines 395-401    Link Here 
  /// (for those processors that support interrupts), the processor is
  /// (for those processors that support interrupts), the processor is
  /// in a different 'state' then when the interrupt flag is cleared.
  /// in a different 'state' then when the interrupt flag is cleared.
  list<ProgramMemoryAccess *> pma_context;
  std::list<ProgramMemoryAccess *> pma_context;
  /// Tracing
  /// Tracing
  /// The readTT and writeTT are TraceType objects for tracing
  /// The readTT and writeTT are TraceType objects for tracing
(-) gpsim-0.22.0-orig/src/symbol.cc (+2 lines)
 Lines 47-52    Link Here 
#include "cmd_gpsim.h"
#include "cmd_gpsim.h"
#include "sim_context.h"
#include "sim_context.h"
#include <typeinfo>
class IIndexedCollection;
class IIndexedCollection;
//
//
(-) gpsim-0.22.0-orig/src/value.cc (+2 lines)
 Lines 33-38    Link Here 
#include "../config.h"
#include "../config.h"
#include "cmd_gpsim.h"
#include "cmd_gpsim.h"
#include <typeinfo>
char * TrimWhiteSpaceFromString(char * pBuffer) {
char * TrimWhiteSpaceFromString(char * pBuffer) {
  size_t iPos = 0;
  size_t iPos = 0;
  char * pChar = pBuffer;
  char * pChar = pBuffer;
(-) gpsim-0.22.0-orig/src/value.h (+1 lines)
 Lines 23-28    Link Here 
#include "gpsim_object.h"
#include "gpsim_object.h"
#include <glib.h>
#include <glib.h>
#include <cstring>
class Processor;
class Processor;
class Module;
class Module;