]> rtime.felk.cvut.cz Git - fpga/lx-cpu1/lx-dad.git/blobdiff - sw/app/lx_dad/appl_sim_posix.c
Prepare build-able skeleton for LX_DAD application.
[fpga/lx-cpu1/lx-dad.git] / sw / app / lx_dad / appl_sim_posix.c
diff --git a/sw/app/lx_dad/appl_sim_posix.c b/sw/app/lx_dad/appl_sim_posix.c
new file mode 100644 (file)
index 0000000..fd6a082
--- /dev/null
@@ -0,0 +1,36 @@
+#include <stdio.h>
+#include <cmd_proc.h>
+
+int uart0Getch(void)
+{
+  return -1;
+}
+
+int uart0PutchNW(int ch)
+{
+  putchar(ch);
+  return (unsigned char)ch;
+}
+
+cmd_des_t const *cmd_appl_tests[]={
+  NULL
+};
+
+int appl_distore_init(void)
+{
+  return 0;
+}
+int appl_distore_user_set_check4change(void)
+{
+  return 0;
+}
+
+int appl_distore_user_restore(void)
+{
+  return 0;
+}
+
+int appl_distore_user_change_check(void)
+{
+  return 0;
+}