z80-tools/src/z80core/NotifyOps.java

15 wiersze
246 B
Java

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package z80core;
/**
*
* @author jsanchez
*/
public interface NotifyOps {
int breakpoint(int address, int opcode);
void execDone();
}