1 ; test app 1 2 3 [bits 32] 4 org 0x0 5 6 ;header: 7 ; dd 0x4D534F48 ; magic identifier "HOSM" 8 ; dd 2 ; test app 9 ; dd start ; start address 10 ; dd 0 ; reserved 11 12 start: 13 00000000 BB[0F000000] mov ebx, astring 14 00000005 B802000000 mov eax, 2 15 0000000A CD30 int 0x30 16 0000000C EBF2 jmp start 17 0000000E C3 ret 18 19 astring: 20 0000000F 48656C6C6F20746865- db "Hello there from test1!", 10, 0 21 00000018 72652066726F6D2074- 22 00000021 65737431210A00