Collection of fast assembler routine for daily hardcore programming use in Delphi (BASM). They are all lightning fast. Every byte of code is optimized into most efficient machine instructions. They can improve performance of your application in doing large repetitive task such millions records data processing, complex math operations, graphics manipulation, etc.
2010/10/16
Reverse Bit Order
// Following function will reverse bits order (e.g.: 1101 -> 1011)
// in DWORD value (Integer, Cardinal).function reverseBits(_EAX: Cardinal); assembler; register;
asm
No comments:
Post a Comment