mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
40 lines
399 B
C++
40 lines
399 B
C++
#include "console.h"
|
|
#include <ion/console.h>
|
|
#include <kandinsky/ion_context.h>
|
|
|
|
namespace Ion {
|
|
namespace Console {
|
|
|
|
char readChar() {
|
|
return 0;
|
|
}
|
|
|
|
void writeChar(char c) {
|
|
KDIonContext::putchar(c);
|
|
}
|
|
|
|
bool transmissionDone() {
|
|
return true;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
namespace Ion {
|
|
namespace Device {
|
|
namespace Console {
|
|
|
|
void init() {
|
|
}
|
|
|
|
void shutdown() {
|
|
}
|
|
|
|
bool peerConnected() {
|
|
return false;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|