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
11 mov ax, seg _message
; 0000 [1]
13 mov dx, _message
; 0005 [2]
14 call far _puts
; 0008 [2][1]
19 _message: db 'Hello, World', 10, 13, 0