qemu-nyx-runner/client/nyx-wrapper.c
David Venhoff e46e0fbacc Automatically build the client
This makes it possible to just type `cargo run` and always get the up to date client
2025-07-31 15:45:58 +02:00

9 lines
205 B
C

#include "nyx.h"
void rust_hprintf(const char * format) {
hprintf(format);
}
uint32_t rust_perform_hypercall(uint32_t hypercall, uint32_t argument) {
return kAFL_hypercall(hypercall, argument);
}