Yes, I know this is a double post, but this question also pertains to the assembly forum. If you use TASM 4.0, you may be able to answer this.
How could I define multiple data segments in Borland Turbo C 3.0?
Printable View
Yes, I know this is a double post, but this question also pertains to the assembly forum. If you use TASM 4.0, you may be able to answer this.
How could I define multiple data segments in Borland Turbo C 3.0?
Something like..
Not too sure what you mean, but...Code:DGROUP GROUP _DATA,_OTHER
_DATA SEGMENT WORD PUBLIC 'DATA'
szString1 db "String 1",0dh,0ah,0
szString2 db "String 2",0dh,0ah,0
_DATA ENDS
_OTHER SEGMENT WORD PUBLIC 'OTHER'
;other stuff here
_OTHER ENDS
Phreak
Thanks for the response. Right now I am waiting on a response back from the person that I am helping.