mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-11 16:41:12 -05:00
17 lines
402 B
C++
17 lines
402 B
C++
#include "platform_macro.h"
|
|
#if defined(TARGET_ARCH_ARM64)
|
|
|
|
#include "core/modules/assembler/assembler-arm64.h"
|
|
|
|
#include "dobby_internal.h"
|
|
|
|
using namespace zz::arm64;
|
|
|
|
void set_routing_bridge_next_hop(RegisterContext *ctx, void *address) {
|
|
*reinterpret_cast<void **>(&ctx->general.x[TMP_REG_0.code()]) = address;
|
|
}
|
|
|
|
void get_routing_bridge_next_hop(RegisterContext *ctx, void *address) {
|
|
}
|
|
|
|
#endif
|