repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
changes.src: we managed to implement a few %pragmas before 2.13...
[nasm.git]
/
test
/
rdpid.asm
blob
76d9fc268665148da8a6f441aed64c8014d8eda5
1
%
ifdef ERROR
2
%
define ERR
(
x
)
x
3
%
else
4
%
define ERR
(
x
)
5
%
endif
6
7
bits
16
8
9
rdpid
eax
10
ERR
(
rdpid
ax
)
11
12
bits
32
13
14
rdpid
ebx
15
ERR
(
rdpid
bx
)
16
17
bits
64
18
19
rdpid rcx
20
rdpid
ecx
21
ERR
(
rdpid
cx
)