MalwareSourceCode/MSDOS/H-Index/Virus.MSDOS.Unknown.hello.asm

11 lines
363 B
NASM
Raw Normal View History

2022-08-21 09:07:57 +00:00
; +-------------------------------------------------------------+ ;
; | Sample hello world program for use with the Magic Assembler | ;
; +-------------------------------------------------------------+ ;
mov ah,09
mov dx,offset(hello)
int 21
mov ax,4c00
int 20
hello db 'Hello, world!$'