Code:
     XREF __SEG_START_PhoneNumbers     XDEF test, def_phone1     PhoneNumbers: SECTION;Factory default phone numbers           def_phone1      dc 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0def_phone2      dc 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0def_phone3      dc 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0def_phone4      dc 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0def_phone5      dc 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0def_pin         dc '000000',0,0,0,0,0,0,0,0,0,0def_start_msg   dc 'Watchguard Alarms  ',0MyCode: SECTIONtest:  ldhx   __SEG_START_PhoneNumbers
make sure to either use one of the labels in section PhoneNumbers or to disable smart linking for one of them otherwise the linker will not link the section to the application (as it is not used).