ish/jit/helpers.c

15 lines
297 B
C

#include "emu/cpu.h"
#include "emu/cpuid.h"
void helper_cpuid(dword_t *a, dword_t *b, dword_t *c, dword_t *d) {
do_cpuid(a, b, c, d);
}
void helper_expand_flags(struct cpu_state *cpu) {
expand_flags(cpu);
}
void helper_collapse_flags(struct cpu_state *cpu) {
collapse_flags(cpu);
}