mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -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>
12 lines
137 B
NASM
12 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
|