mirror of
https://github.com/limine-bootloader/limine
synced 2025-03-02 16:01:34 +03:00
15 lines
165 B
NASM
15 lines
165 B
NASM
; This is a compliant "kernel" meant for testing purposes.
|
|
|
|
; Header
|
|
|
|
|
|
section .text
|
|
|
|
; Entry point
|
|
bits 32
|
|
|
|
global _start
|
|
_start:
|
|
mov eax, 0xdeadbeef
|
|
jmp $
|