z80-tools/src/z80core/NotifyOps.java

15 wiersze
246 B
Java
Czysty Zwykły widok Historia

2018-12-26 08:12:35 +00:00
/*
* 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();
}