• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1%macro testConcat 0
2
3    %push ctx
4    %assign %$x 0
5    %rep 8
6
7        movd eax, mm%$x
8        %assign %$x %$x+1
9
10    %endrep %pop
11
12%endmacro
13
14testConcat
15