Archive / / / entry.asm
2003-05-18 16:57:45 UTC
previous next
section boot progbits alloc exec write align=16 align 4 dd 0x1BADB002 dd (1<<0) | (1<<1) ; Bits 0 and 1 set (Page align and Memory fields) dd -(0x1BADB002 + ((1<<0) | (1<<1))) db 'kernel-info-tag-v1|name:kryptOS version --noversion--',0,'|version:--noversion--',0,'|site:http://kr4z.com/',0 align 4 times 100 dd 0 tempstack: global entry entry: mov ecx, tempstack mov esp, ecx push ebx push eax extern start call start hang: hlt jmp hang