15 lines
213 B
NASM
15 lines
213 B
NASM
; test app 1
|
|
|
|
header:
|
|
dd 0x4D534F48 ; magic identifier "HOSM"
|
|
dd 2 ; test app
|
|
dd start ; start address
|
|
dd 0 ; reserved
|
|
|
|
start:
|
|
mov eax, 1
|
|
mov ebx, 'h'
|
|
int 0x30
|
|
jmp start
|
|
ret
|