Assembleur x86

Assembleur x86
.MODEL TINY
CODE SEGMENT
ASSUME CS:CODE, DS:CODE
ORG 100h
START:
        mov ah,9
        mov dx,OFFSET Msg
        int 21h
        int 20h
Msg     db 'Hello World$'
CODE ENDS
END START
Commentaires
- Ecrire votre code et utiliser Tasm


Retour page principale


Valid CSS!  -  Valid XHTML 1.0 Transitional