Move files from libreriscv.git/openpower/sv/bitmanip/
[nmigen-gf.git] / gf_reference / clmulh.py
1 from .clmul import clmul
2
3
4 def clmulh(a, b, XLEN):
5 return clmul(a, b) >> XLEN