Skip to content
Snippets Groups Projects
Commit 520af8d5 authored by Ludovic Apvrille's avatar Ludovic Apvrille
Browse files

Adding cli executable for TTool

parent c8e34e55
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,8 @@ public class Terminal {
val = (RawConsoleInput.read(true));
x = (char) val;
//TraceManager.addDev("val=" + val);
// Special sequence?
if (sequence == null) {
if (val == ESC) {
......@@ -237,7 +239,7 @@ public class Terminal {
// Regular character
} else if (val >= 32) {
//System.out.print("" + x + "(val=" + val + ");");
System.out.print("" + x + "(val=" + val + ");");
if (cursorPosition == currentBuf.length()) {
myPrint("" + x);
currentBuf += x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment