Sha256: a4a52c29013e233e050fb453caa93004846c12b532fd2442226b5574e754736c
Contents?: true
Size: 285 Bytes
Versions: 7
Compression:
Stored size: 285 Bytes
Contents
; hello_world.asm intel .model small .stack 100h .data msg db "Hello World!",'$' .code main proc mov ax,@data mov ds, ax ; hello-world is there mov dx,offset msg mov ah,09 int 21h mov ax,4c00h int 21h main endp end main
Version data entries
7 entries across 7 versions & 1 rubygems