segatools/divahook/jvs.c

84 lines
1.5 KiB
C
Raw Normal View History

#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "amex/jvs.h"
#include "board/io3.h"
2019-05-03 18:47:09 +00:00
#include "divaio/divaio.h"
#include "jvs/jvs-bus.h"
#include "util/dprintf.h"
static void diva_jvs_read_switches(void *ctx, struct io3_switch_state *out);
static uint16_t diva_jvs_read_coin_counter(void *ctx, uint8_t slot_no);
static const struct io3_ops diva_jvs_io3_ops = {
.read_switches = diva_jvs_read_switches,
.read_coin_counter = diva_jvs_read_coin_counter,
};
static struct io3 diva_jvs_io3;
void diva_jvs_init(void)
{
io3_init(&diva_jvs_io3, NULL, &diva_jvs_io3_ops, NULL);
jvs_attach(&diva_jvs_io3.jvs);
}
static void diva_jvs_read_switches(void *ctx, struct io3_switch_state *out)
{
2019-05-03 18:47:09 +00:00
uint8_t opbtn;
uint8_t gamebtn;
assert(out != NULL);
2019-05-03 18:47:09 +00:00
opbtn = 0;
gamebtn = 0;
2019-05-03 18:47:09 +00:00
diva_io_jvs_poll(&opbtn, &gamebtn);
2019-05-03 18:47:09 +00:00
if (gamebtn & 0x01) {
out->p1 |= 1 << 6;
}
2019-05-03 18:47:09 +00:00
if (gamebtn & 0x02) {
out->p1 |= 1 << 7;
}
2019-05-03 18:47:09 +00:00
if (gamebtn & 0x04) {
out->p1 |= 1 << 8;
}
2019-05-03 18:47:09 +00:00
if (gamebtn & 0x08) {
out->p1 |= 1 << 9;
}
2019-05-03 18:47:09 +00:00
if (gamebtn & 0x10) {
out->p1 |= 1 << 15;
}
2019-05-03 18:47:09 +00:00
if (opbtn & 0x01) {
out->system = 0x80;
} else {
out->system = 0;
}
2019-05-03 18:47:09 +00:00
if (opbtn & 0x02) {
out->p1 |= 1 << 14;
}
}
static uint16_t diva_jvs_read_coin_counter(void *ctx, uint8_t slot_no)
{
if (slot_no > 0) {
return 0;
}
2019-05-03 18:47:09 +00:00
return diva_io_jvs_read_coin_counter();
}