-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MIP-79 - make reserved public * MIP-79 - add support for disabling CoProcessor1 * MIP-79 - add named system service - add more methods to TerminalInputListener
- Loading branch information
1 parent
32bc87f
commit 2006213
Showing
14 changed files
with
348 additions
and
243 deletions.
There are no files selected for viewing
294 changes: 131 additions & 163 deletions
294
mips/src/androidTest/java/com/cleverchuk/mips/MipsSimulatorTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
mips/src/main/java/com/cleverchuk/mips/dev/OnUserInputListener.java
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
mips/src/main/java/com/cleverchuk/mips/dev/TerminalInputListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.cleverchuk.mips.dev; | ||
|
||
public interface TerminalInputListener { | ||
default void onIntInput(int data) { | ||
} | ||
|
||
default void onDoubleInput(double data) { | ||
} | ||
|
||
default void onFloatInput(float data) { | ||
} | ||
|
||
default void onStringInput(String data) { | ||
} | ||
|
||
default void onCharInput(char data) { | ||
} | ||
} |
Oops, something went wrong.