summaryrefslogtreecommitdiff
path: root/include/arch/infineon-tc299-mock/driver/stdout.h
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2022-06-28 16:03:26 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2022-06-28 16:03:26 +0200
commit264119822b44eaf8ec2d7c959fd863a74196d412 (patch)
tree7bf3b63a9e304fd54a3d35d35f9cc00b625900e2 /include/arch/infineon-tc299-mock/driver/stdout.h
parent2a9250606e00c4729db79811e6c50f9ddeb29188 (diff)
add TC299 mock arch
Diffstat (limited to 'include/arch/infineon-tc299-mock/driver/stdout.h')
-rw-r--r--include/arch/infineon-tc299-mock/driver/stdout.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/arch/infineon-tc299-mock/driver/stdout.h b/include/arch/infineon-tc299-mock/driver/stdout.h
new file mode 100644
index 0000000..b701dc1
--- /dev/null
+++ b/include/arch/infineon-tc299-mock/driver/stdout.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef STANDARDOUTPUT_H
+#define STANDARDOUTPUT_H
+
+#include "object/outputstream.h"
+
+class StandardOutput : public OutputStream {
+ private:
+ StandardOutput(const StandardOutput &copy);
+
+ public:
+ StandardOutput () {}
+ void setup();
+
+ virtual void put(char c) override;
+};
+
+extern StandardOutput kout;
+
+#endif