summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/include/my_ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/arm/nds/include/my_ipc.h')
-rw-r--r--c/src/lib/libbsp/arm/nds/include/my_ipc.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/c/src/lib/libbsp/arm/nds/include/my_ipc.h b/c/src/lib/libbsp/arm/nds/include/my_ipc.h
deleted file mode 100644
index 6dd05eaee7..0000000000
--- a/c/src/lib/libbsp/arm/nds/include/my_ipc.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * RTEMS for Nintendo DS interprocessor communication extensions.
- *
- * Copyright (c) 2008 by Matthieu Bucchianeri <mbucchia@gmail.com>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- *
- * http://www.rtems.org/license/LICENSE
- */
-
-#ifndef _MYIPC_H_
-#define _MYIPC_H_
-
-#include "types.h"
-
-typedef struct
-{
- vuint8_t *record_buffer;
- vuint32_t record_length_max;
- vuint32_t recorded_length;
- vuint8_t record;
-} my_TransferRegion;
-
-static inline my_TransferRegion volatile *
-getmy_IPC (void)
-{
- return (my_TransferRegion volatile *) (0x027FF000 +
- sizeof (TransferRegion));
-}
-
-#define my_IPC getmy_IPC()
-
-#endif