mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-02 12:17:10 -05:00
13 lines
No EOL
307 B
C++
13 lines
No EOL
307 B
C++
#include "platform_macro.h"
|
|
#if defined(TARGET_ARCH_ARM)
|
|
|
|
#include "dobby_internal.h"
|
|
|
|
void set_routing_bridge_next_hop(RegisterContext *ctx, void *address) {
|
|
*reinterpret_cast<void **>(&ctx->general.regs.r12) = address;
|
|
}
|
|
|
|
void get_routing_bridge_next_hop(RegisterContext *ctx, void *address) {
|
|
}
|
|
|
|
#endif |