hos/apps/test1.asm

18 lines
232 B
NASM

; test app 1
[bits 32]
org 0x0
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