Fix unsigned mul test
All checks were successful
BUILD / test (push) Successful in 1m48s

This commit is contained in:
Lukáš Plevač 2024-11-14 15:22:46 +01:00
parent 5bb50a325f
commit bb94958118

View File

@ -22,7 +22,7 @@ if __name__ == "__main__":
# try to test maji
for a in range(256):
for b in range(256):
testOut = c_uint16(maji(a, b))
testOut = c_uint16(maji(a, b)).value
expectedBus = c_uint16(c_uint8(a).value * c_uint8(b).value).value
if (expectedBus != testOut):