hello world

entry38 galeri
    11.
  1. assembler-intel için:

    back to index
    ; hello world for intel assembler (msdos)

    mov ax,cs
    mov ds,ax
    mov ah,9
    mov dx, offset hello
    int 21h
    xor ax,ax
    int 21h

    hello:
    db "hello world!",13,10,"$"
    0 ...