MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / logEXmm

Function logEXmm

source/emulation/cpu/decoder.cpp:1900–1910  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1898}
1899
1900static void logEXmm(const LogInstruction* inst, DecodedOp* op, BString& out) {
1901 out.append(inst->name);
1902 out.append(" ");
1903 if (op->ea16) {
1904 outE16(op, out);
1905 } else {
1906 outE32(op, out);
1907 }
1908 out.append(",");
1909 outXMM(op->reg, out);
1910}
1911
1912static void logXmmR(const LogInstruction* inst, DecodedOp* op, BString& out) {
1913 out.append(inst->name);

Callers

nothing calls this directly

Calls 4

outE16Function · 0.85
outE32Function · 0.85
outXMMFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected