d00m
04-10-2003, 12:58
wie soll ich denn ein assambler code in visual studioa c/c++ compilieren ?? (wenn das überhaupt geht)
zb.:
#include <stdio.h>
void asm();
int main()
{
asm();
return 0;
}
void asm()
{
DOSSEG
.model small
.stack 100h
.data
msgHello DB "Hello, world!",13,10,"$"
.code
mov ax,@data ; Strichpunkt leitet Kommentar ein!
mov ds,ax ; Datensegment initialisiert
mov dx,offset msgHello ;
mov ah,9 ; Ausgabe eines String
int 21h ;
mov ax,4C00h ; Programm beenden
int 21h ;
END
}
muss ich das ne extra header includen ??
please help
zb.:
#include <stdio.h>
void asm();
int main()
{
asm();
return 0;
}
void asm()
{
DOSSEG
.model small
.stack 100h
.data
msgHello DB "Hello, world!",13,10,"$"
.code
mov ax,@data ; Strichpunkt leitet Kommentar ein!
mov ds,ax ; Datensegment initialisiert
mov dx,offset msgHello ;
mov ah,9 ; Ausgabe eines String
int 21h ;
mov ax,4C00h ; Programm beenden
int 21h ;
END
}
muss ich das ne extra header includen ??
please help