Thread: not compliling!
View Single Post
  #1 (permalink)  
Old September 13th, 2004, 04:11 AM
habtegiorges habtegiorges is offline
Registered User
 
Join Date: Sep 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default not compliling!

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
Reply With Quote