1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-21 18:37:11 +00:00

Add [S/L]MSW.

This commit is contained in:
Thomas Harte 2025-04-02 23:24:28 -04:00
parent 1a68dcbc14
commit 804fbf5d5f

View File

@ -264,6 +264,9 @@ std::string InstructionSet::x86::to_string(Operation operation, DataSize size, M
return "bound";
}
case Operation::LMSW: return "lmsw";
case Operation::SMSW: return "smsw";
case Operation::Invalid: return "invalid";
default: