www.digitalmars.com         C & C++   DMDScript  

c++.dos.16-bits - can't make a dos 16 bits program

reply dos16 <dos16_member pathlink.com> writes:
I want to make a dos 16 bits program but i can't : 

/* DigiMars 8.34c */

main()
{
puts("hello");

getch();
return 0;
}


/*

dmc -ms hello.c
-> sds lib
-> Warning 2 : Flie not found sds.lib

dmc -md hello.c
-> Command line error : valid memory models are -m[tsmcrzlvfnpx]

*/
Jul 06 2003
parent "Walter" <walter digitalmars.com> writes:
You need the "DOS 16 libraries" from
www.digitalmars.com/download/freecompiler.html


"dos16" <dos16_member pathlink.com> wrote in message
news:be99bt$1342$1 digitaldaemon.com...
 I want to make a dos 16 bits program but i can't :

 /* DigiMars 8.34c */

 main()
 {
 puts("hello");

 getch();
 return 0;
 }


 /*

 dmc -ms hello.c
 -> sds lib
 -> Warning 2 : Flie not found sds.lib

 dmc -md hello.c
 -> Command line error : valid memory models are -m[tsmcrzlvfnpx]

 */
Jul 06 2003