foxgrey: 太慢了,我以前最快的解决办法。 [阅读: 436] 2004-11-19 16:12:00 function bswap(AInput: LongWord): LongWord; asm mov eax, AInput bswap eax end function bswap(AInput: Word): Word asm mov ax, AInput ror ax, 8 end;