Hello Fellows,
I am having a difficulty in compling the following simple program under visual C++ 6.0 complier:
#include <iostream>
using namespace std;
void main (void)
{
cout << "Przed wydaniem dŸwiêku" << endl;
asm {
MOV AH,2
MOV DL,7
INT 21H
}
cout <<"Zrobione!" << endl;
}
any help is welcomed
