I'm writing stubs for interrupt handlers in my kernel for which I'm using rep to make it easier.
%assign i 0
%rep 256
GLOBAL int_i
int_i:
%assign i i+1
%endrep
The problem is getting int_i to do what I want. I have that there as a placeholder, what I really want is to concatenate int_ and the value of i to form a single token that will be interpreted as a label. Is this possible? If so, how?
Thanks for your time,
Tyler