You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The provided function is intended to extract the row information from RegOff. However, the current implementation incorrectly extracts only the lower 8 bits (RegOff[7:0]) instead of the intended range, RegOff[ColShift:RowShift].
I believe the above logic has been misplaced and currently resides in _XAie_GetColfromRegOff. The _XAie_GetColfromRegOff function should also be updated to the following:
aie-rt/driver/src/common/xaie_helper.c
Lines 1036 to 1039 in 1a403e2
The provided function is intended to extract the
row
information fromRegOff
. However, the current implementation incorrectly extracts only the lower 8 bits (RegOff[7:0]
) instead of the intended range,RegOff[ColShift:RowShift]
.The correct version is something like this:
I believe the above logic has been misplaced and currently resides in
_XAie_GetColfromRegOff
. The_XAie_GetColfromRegOff
function should also be updated to the following:The text was updated successfully, but these errors were encountered: