• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión72560016e7c91d3281a6749fd530b92f98e3e980 (tree)
Tiempo2020-05-27 20:10:40
AutorYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

Add RX.

Cambiar Resumen

Diferencia incremental

--- a/examples/standalone/stubs.c
+++ b/examples/standalone/stubs.c
@@ -287,10 +287,25 @@ static void **jt;
287287 #else
288288 #error Unsupported Xtensa ABI
289289 #endif
290-#else
291290 /*" addi $sp, $sp, -24\n" \
292291 " br $r16\n" \*/
293292
293+#elif defined(CONFIG_RX)
294+/*
295+ * r15 holds the pointer to the global_data. r1 is a call clobbered.
296+ */
297+#define EXPORT_FUNC(f, a, x, ...) \
298+ asm volatile ( \
299+ " .align 2\n" \
300+ " .globl " #x "\n" \
301+ #x ":\n" \
302+ " add %0, r15, r1\n" \
303+ " mov.l [r1], r1\n" \
304+ " add %1, r1\n" \
305+ " mov.l [r2], r1\n" \
306+ " jmp r1\n" \
307+ : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r1");
308+#else
294309 #error stubs definition missing for this architecture
295310 #endif
296311