preproc: need to look at mmac->in_progress not mstk->in_progress
[nasm.git] / test / manysecs.asm
blob49799453a2fb99d443065f8f0c1457844254c651
1 %ifndef NSECS
2 %assign NSECS 16384
3 %endif
5 %assign NSECS ((NSECS+3) & ~3)
7 %assign n 0
8 %rep NSECS
9 %assign gcom (n & ~3) + 2
10 section .text %+ n progbits exec
11 start_ %+ n:
12 nop
13 jmp start_ %+ gcom
14 %assign n n+1
15 %endrep