2020-03-25 01:39:02 +03:00
|
|
|
; This is a compliant "kernel" meant for testing purposes.
|
|
|
|
|
|
|
|
; Header
|
|
|
|
|
|
|
|
|
|
|
|
section .text
|
|
|
|
|
|
|
|
; Entry point
|
2020-03-25 03:04:18 +03:00
|
|
|
global _start
|
2020-03-25 01:39:02 +03:00
|
|
|
_start:
|
2020-03-25 03:04:18 +03:00
|
|
|
mov eax, 0xdeadbeef
|
|
|
|
jmp $
|