1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
/*
Copyright (C) 1998,1999,2000,2001
T. Scott Dattalo and Ralf Forsberg
This file is part of gpsim.
gpsim is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
gpsim is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with gpsim; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include "../config.h"
#ifdef HAVE_GUI
#include "../src/processor.h"
#include "gui_breadboard.h"
#include "gui_profile.h"
#include "gui_register.h"
#include "gui_regwin.h"
#include "gui_scope.h"
#include "gui_src.h"
#include "gui_stack.h"
#include "gui_stopwatch.h"
#include "gui_symbols.h"
#include "gui_trace.h"
#include "gui_watch.h"
#include "gui_processor.h"
void create_dispatcher ();
GUI_Processor::GUI_Processor()
: source_window(nullptr), cpu(nullptr),
m_pGUIRamRegisters(nullptr), m_pGUIEEPromRegisters(nullptr)
{
create_dispatcher();
regwin_ram = new RAM_RegisterWindow(this);
regwin_eeprom = new EEPROM_RegisterWindow(this);
program_memory = new SourceBrowserOpcode_Window(this);
source_browser = new SourceBrowserParent_Window(this);
symbol_window = new Symbol_Window(this);
watch_window = new Watch_Window(this);
stack_window = new Stack_Window(this);
breadboard_window = new Breadboard_Window(this);
trace_window = new Trace_Window(this);
profile_window = new Profile_Window(this);
stopwatch_window = new StopWatch_Window(this);
scope_window = new Scope_Window(this);
}
void GUI_Processor::SetCPU(Processor *new_cpu)
{
cpu = new_cpu;
delete m_pGUIRamRegisters;
m_pGUIRamRegisters = new GUIRegisterList(&new_cpu->rma);
delete m_pGUIEEPromRegisters;
m_pGUIEEPromRegisters = new GUIRegisterList(&new_cpu->ema);
}
#endif // HAVE_GUI
|