mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-18 17:36:11 +00:00
11 lines
373 B
NASM
11 lines
373 B
NASM
; +-------------------------------------------------------------+ ;
|
|
; | 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!$'
|