1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-09-23 18:48:21 +02:00
segatools-hay1tsme/jvs/jvs-bus.h

25 lines
498 B
C

#pragma once
#include <stdbool.h>
#include <stddef.h>
#include "hook/iobuf.h"
struct jvs_node {
struct jvs_node *next;
void (*transact)(
struct jvs_node *node,
const void *bytes,
size_t nbytes,
struct iobuf *resp);
bool (*sense)(struct jvs_node *node);
};
void jvs_bus_transact(
struct jvs_node *head,
const void *bytes,
size_t nbytes,
struct iobuf *resp);
bool jvs_node_sense(struct jvs_node *node);