Dependency inversions

This commit is contained in:
2025-01-26 15:44:01 +01:00
parent c8f23176d2
commit 52daa062df
27 changed files with 955 additions and 482 deletions

View File

@ -0,0 +1,15 @@
package fabrik.simulator.pic16f84.interfaces;
import java.util.List;
public interface ProgramStackInterface {
int pop();
void push(int i);
void reset();
int getStackPointer();
List<Integer> getStack();
}