mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
fixes
This commit is contained in:
@ -34,8 +34,8 @@ public class SIBDecoder
|
||||
int baseIndex = sib & Constants.SIB_BASE_MASK;
|
||||
|
||||
// Map the SIB register indices to RegisterIndex enum values
|
||||
RegisterIndex index = RegisterMapper.MapModRMToRegisterIndex(indexIndex);
|
||||
RegisterIndex @base = RegisterMapper.MapModRMToRegisterIndex(baseIndex);
|
||||
RegisterIndex index = (RegisterIndex)indexIndex;
|
||||
RegisterIndex @base = (RegisterIndex)baseIndex;
|
||||
|
||||
// Special case: ESP/SP (4) in index field means no index register
|
||||
if (index == RegisterIndex.Sp)
|
||||
|
Reference in New Issue
Block a user