Archive / / / / / entry.asm
2002-12-01 04:13:55 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 'NAME:kryptOS version 0.01',0,'VERSION:0.01',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 kinit call kinit hang: hlt jmp hang