- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for JGE (0.1 sec)
-
src/cmd/asm/internal/arch/arch.go
instructions["JCS"] = x86.AJCS /* carry set (CF = 1) */ instructions["JE"] = x86.AJEQ /* alternate */ instructions["JEQ"] = x86.AJEQ /* equal (ZF = 1) */ instructions["JG"] = x86.AJGT /* alternate */ instructions["JGE"] = x86.AJGE /* greater than or equal (signed) (SF = OF) */ instructions["JGT"] = x86.AJGT /* greater than (signed) (ZF = 0 && SF = OF) */ instructions["JHI"] = x86.AJHI /* higher (unsigned) (CF = 0 && ZF = 0) */
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 24 12:32:56 UTC 2024 - 21.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64enc.s
//TODO: JECXZ .+$0x11 // e311 //TODO: JG .+$0x11223344 // 0f8f44332211 or 480f8f44332211 //TODO: JG .+$0x11 // 7f11 //TODO: JGE .+$0x11223344 // 480f8d44332211 or 0f8d44332211 //TODO: JGE .+$0x11 // 7d11 //TODO: JL .+$0x11223344 // 0f8c44332211 or 480f8c44332211 //TODO: JL .+$0x11 // 7c11
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1)