- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for JLE (0.04 sec)
-
src/cmd/asm/internal/arch/arch.go
instructions["JHI"] = x86.AJHI /* higher (unsigned) (CF = 0 && ZF = 0) */ instructions["JHS"] = x86.AJCC /* alternate */ instructions["JL"] = x86.AJLT /* alternate */ instructions["JLE"] = x86.AJLE /* less than or equal (signed) (ZF = 1 || SF != OF) */ instructions["JLO"] = x86.AJCS /* alternate */ instructions["JLS"] = x86.AJLS /* lower or same (unsigned) (CF = 1 || ZF = 1) */
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: JGE .+$0x11 // 7d11 //TODO: JL .+$0x11223344 // 0f8c44332211 or 480f8c44332211 //TODO: JL .+$0x11 // 7c11 //TODO: JLE .+$0x11223344 // 0f8e44332211 or 480f8e44332211 //TODO: JLE .+$0x11 // 7e11 JCS 2(PC) //TODO: JMPQ* (BX) // ff23 JCS 2(PC) //TODO: JMPQ* (R11) // 41ff23 JCS 2(PC)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1)