I'm actually developing with asm one on Amiga (68k processor).
I'm stuck with this issue: how to append values to a label?
For example:
Copperlist:
DC.w $11
DC.w $ 12
Rts
... ; Some code
Bar:
DC.w $13
Now I want to to append bar content to Copperlist
in order to achieve $11
,$12
,$13
on Copperlist
label address...
Is it possible?