mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
15 lines
297 B
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);
|
|
}
|