summaryrefslogtreecommitdiffstats
path: root/sources/fileman.asm
blob: dd0f8046fcf45286758d6d51fdaaf745424557cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "kernel.inc"
    ; Program header, safe to ignore
    .db "KEXC"
    .db KEXC_ENTRY_POINT
    .dw start
    .db KEXC_STACK_SIZE
    .dw 100
    .db KEXC_HEADER_END
    ; End of program header
fileman_path:
    .db "/bin/fileman", 0
start:
    kld(de, fileman_path)
    pcall(launchProgram)
    ret