
com.github.croesch.micro_debug.debug.MacroBreakpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-debug Show documentation
Show all versions of micro-debug Show documentation
A debugger for (micro-)assembler-programs for the Mic-1.
The newest version!
/*
* Copyright (C) 2011-2012 Christian Roesch
*
* This file is part of micro-debug.
*
* micro-debug 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 3 of the License, or
* (at your option) any later version.
*
* micro-debug 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 micro-debug. If not, see .
*/
package com.github.croesch.micro_debug.debug;
import com.github.croesch.micro_debug.annotation.NotNull;
import com.github.croesch.micro_debug.commons.Utils;
import com.github.croesch.micro_debug.datatypes.DebugMode;
import com.github.croesch.micro_debug.i18n.Text;
import com.github.croesch.micro_debug.mic1.controlstore.MicroInstruction;
import com.github.croesch.micro_debug.settings.Settings;
/**
* A breakpoint for a specific line in macro code.
*
* @author croesch
* @since Date: Feb 4, 2012
*/
final class MacroBreakpoint extends AbstractLineBreakpoint {
/**
* Constructs a breakpoint with the condition that the given line of macro code is executed.
*
* @since Date: Feb 4, 2012
* @param l the line that should be executed so that this breakpoint is activated
*/
MacroBreakpoint(final int l) {
super(l);
}
@Override
public boolean isConditionMet(final int microLine,
final int macroLine,
final MicroInstruction currentInstruction,
final MicroInstruction nextInstruction) {
return microLine == Settings.MIC1_MICRO_ADDRESS_IJVM.getValue() && macroLine == getLine();
}
@Override
@NotNull
public String toString() {
return Text.BREAKPOINT_MACRO.text(getId(), Utils.toHexString(getLine()));
}
@Override
boolean isBreakpointForMode(final DebugMode mode) {
return mode != DebugMode.MICRO;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy