13 lines
156 B
NASM
13 lines
156 B
NASM
; This is a compliant "kernel" meant for testing purposes.
|
|
|
|
; Header
|
|
|
|
|
|
section .text
|
|
|
|
; Entry point
|
|
global _start
|
|
_start:
|
|
mov eax, 0xdeadbeef
|
|
jmp $
|