mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 23:55:06 -04:00
5dda5762ba
subrepo: subdir: "ZAPDTR" merged: "a53a53ea4" upstream: origin: "https://github.com/HarbourMasters/ZAPDTR.git" branch: "master" commit: "a53a53ea4" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
#include <inttypes.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include "gbi.h"
|
|
#include "gfxd.h"
|
|
#include "priv.h"
|
|
|
|
#include "uc_argfn.c"
|
|
#include "uc_argtbl.c"
|
|
#include "uc_macrofn.c"
|
|
#include "uc_macrotbl.c"
|
|
|
|
UCFUNC int disas(gfxd_macro_t *m, uint32_t hi, uint32_t lo)
|
|
{
|
|
int opcode = (hi >> 24) & 0xFF;
|
|
|
|
for (int i = 0; i < sizeof(macro_tbl) / sizeof(macro_tbl[0]); i++)
|
|
{
|
|
const gfxd_macro_type_t *t = ¯o_tbl[i];
|
|
if (t->disas_fn != NULL && t->opcode == opcode)
|
|
return t->disas_fn(m, hi, lo);
|
|
}
|
|
|
|
return d_Invalid(m, hi, lo);
|
|
}
|
|
|
|
UCFUNC int combine(gfxd_macro_t *m, int num)
|
|
{
|
|
int opcode = macro_tbl[m->id].opcode;
|
|
|
|
for (int i = 0; i < sizeof(macro_tbl) / sizeof(macro_tbl[0]); i++)
|
|
{
|
|
const gfxd_macro_type_t *t = ¯o_tbl[i];
|
|
if (t->combine_fn != NULL
|
|
&& t->opcode == opcode
|
|
&& (t->ext == 0 || config.emit_ext_macro != 0))
|
|
{
|
|
if (t->combine_fn(m, num) == 0)
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
static const struct gfxd_ucode uc =
|
|
{
|
|
.disas_fn = disas,
|
|
.combine_fn = combine,
|
|
.arg_tbl = arg_tbl,
|
|
.macro_tbl = macro_tbl,
|
|
};
|
|
|
|
const gfxd_ucode_t uc_name = &uc;
|