000
30.10.2004, 17:14 Uhr
RedEagle
|
Hi Ich hoffe, dass das, das richtige Forum ist.
ich möchte Assembler-code in mein Cpp-Programm einfügen (DEV-CPP), doch irgendwie geht das nicht:
C++: |
int main() { __asm { start: //; The CODE entry point to the program call main //; branch to the "main" procedure exit //;««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««« main proc print chr$("Hi, I am in the 'main' procedure",13,10) ret //; return to the next instruction after "call" main endp //;««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««« end start //; the program ends } return 0; }
|
-- MFG RedEagle Dieser Post wurde am 30.10.2004 um 17:15 Uhr von RedEagle editiert. |