coff: Better handling of section redefinition
[nasm.git] / rdoff / test / rdfseg.asm
blob4c6f587be9af4230363614a7d410fa8028b3c7ff
1 ;; program to test inter-segment production and linkage of RDF objects
3 ;; [1] should produce segment base ref
4 ;; [2] should produce standard relocation
6 [GLOBAL _main]
7 [EXTERN _puts: far]
8 [BITS 16]
10 _main:
11 mov ax, seg _message ; 0000 [1]
12 mov ds, ax ; 0003
13 mov dx, _message ; 0005 [2]
14 call far _puts ; 0008 [2][1]
15 xor ax,ax ; 000D
16 int 21h ; 000F
18 [SECTION .data]
19 _message: db 'Hello, World', 10, 13, 0