Decoders: Add IOpCode32HasSetFlags (#3136)

This commit is contained in:
merry
2022-02-18 00:33:43 +00:00
committed by GitHub
parent 95cc18a7b4
commit 747876dc67
4 changed files with 10 additions and 5 deletions

View File

@ -0,0 +1,7 @@
namespace ARMeilleure.Decoders
{
interface IOpCode32HasSetFlags
{
bool? SetFlags { get; }
}
}