Fixed problem in DeviceSettings::strParam, returned wrong string
[avr-sim.git] / src / TraceAnalyzer.cpp
blob2af9a6dda10d6c845bc6a5cf9a85df4b0d80e7a2
1 /*
2 * avr-sim: An atmel AVR simulator
3 * Copyright (C) 2008 Tom Haber
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #include "TraceAnalyzer.h"
20 #include "Trace.h"
22 namespace avr {
24 TraceAnalyzer::TraceAnalyzer(Core *core, const char *filename)
25 : Analyzer(core) {
27 tracer.enableLogging( filename );
30 TraceAnalyzer::~TraceAnalyzer() {
31 tracer.disableLogging();
34 void TraceAnalyzer::reset(unsigned int type) {
35 tracer.reset( type );
38 void TraceAnalyzer::trace(dword address) {
39 tracer.pc_trace( address );
42 void TraceAnalyzer::step(lword ticks) {
43 tracer.cycle_counter( ticks );
46 void TraceAnalyzer::readRegister(unsigned int r, byte val) {
47 tracer.register_read( r, val );
50 void TraceAnalyzer::writeRegister(unsigned int r, byte val) {
51 tracer.register_write( r, val );
54 void TraceAnalyzer::interrupt(unsigned int vector, unsigned int /*addr*/) {
55 tracer.interrupt( vector );