On Friday, 22 September 2023 at 22:48:34 UTC, claptrap wrote:
On Friday, 22 September 2023 at 14:29:08 UTC, Vitaliy Fadeev
wrote:
x86 first bit check (odd check):
```asm
AND EAX, EAX ; update FLAG OF // odd flag
JO Label
```
Is there D-Lang operator of optimized library function ?
There's
On Friday, 22 September 2023 at 14:29:08 UTC, Vitaliy Fadeev
wrote:
x86 first bit check (odd check):
```asm
AND EAX, EAX ; update FLAG OF // odd flag
JO Label
```
Is there D-Lang operator of optimized library function ?
There's no "odd" flag, theres the overflow flag "O", and "JO" is
jump
x86 first bit check (odd check):
```asm
AND EAX, EAX ; update FLAG OF // odd flag
JO Label
```
Is there D-Lang operator of optimized library function ?