#include "stdio.h" extern char mydata[]; #asm ._mydata defm "This is a string" defb 0 ; String termination #endasm main() { printf("%s",mydata); }