אשכול: פלט באסמבלר
View Single Post
ישן 22-04-07, 19:40   # 5
HighA
מתאורר / יצא בחוץ
 
מיני פרופיל
תאריך הצטרפות: Nov 2005
גיל: 33
הודעות: 833

HighA לא מחובר  

קוד:
.model small
.stack 100h
.data
msg db 'I am here$'
.code
mov ax,@data
mov ds, ax
mov cl,0ffh
;++++++++++++++start
mov ah, 9
mov dx, offset msg
int 21h
;++++++++++++++end
mov ah,4ch
int 21h
end
  Reply With Quote