summaryrefslogtreecommitdiff
path: root/test/rdpid.asm
blob: 76d9fc268665148da8a6f441aed64c8014d8eda5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%ifdef ERROR
  %define ERR(x) x
%else
  %define ERR(x)
%endif

	bits 16

	rdpid eax
	ERR(rdpid ax)

	bits 32

	rdpid ebx
	ERR(rdpid bx)

	bits 64

	rdpid rcx
	rdpid ecx
	ERR(rdpid cx)