c++.dos.16-bits - can't make a dos 16 bits program
- dos16 <dos16_member pathlink.com> Jul 06 2003
- "Walter" <walter digitalmars.com> Jul 06 2003
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
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








"Walter" <walter digitalmars.com>