mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
10 lines
101 B
NASM
10 lines
101 B
NASM
|
|
%macro ret_if_cc 1-*
|
||
|
|
j%+2 %%skip
|
||
|
|
ret
|
||
|
|
j%-2 %%skip
|
||
|
|
ret
|
||
|
|
%%skip:
|
||
|
|
%endmacro
|
||
|
|
|
||
|
|
ret_if_cc ne
|