Hi all, I'd like to know if it is possible to select a segment from another one. I explain: usually you do this: CODE_SEG segment CODE rseg CODE_SEG what I want to do is: CODE_SEG segment CODE rseg ANOTHER_CODE_SEG Thanks for answering, Gilles
Your request isn't exactly making much sense. The two statements in the pairs you show are actually independent commands. There's absolutely nothing forcing you to always use them in pairs. One defines a segment, the other tells the assembler that subsequent code/data are meant to go into the given segment.