mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-09-22 10:43:39 -04:00
Add support for the {pt} and {pn} branch hint prefixes, now when they are no longer orphanned... Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
13 lines
137 B
NASM
13 lines
137 B
NASM
bits 64
|
|
here:
|
|
cs jz there
|
|
ds jz there
|
|
{pt} jz there
|
|
{pn} jz there
|
|
es jz there
|
|
ss jz there
|
|
|
|
there:
|
|
{pt} jmp there
|
|
{pn} jmp there
|