From c58284761ab65c8f0cdd282143495075be606760 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 20 Mar 2022 23:05:10 -0400 Subject: [PATCH] Comment hulk.hulk module a bit --- src/hulk/hulk.d | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/hulk/hulk.d b/src/hulk/hulk.d index 8911341..3fc4984 100644 --- a/src/hulk/hulk.d +++ b/src/hulk/hulk.d @@ -1,9 +1,17 @@ +/** + * HULK, the HOS Ultra Light Kernel. + */ module hulk.hulk; import hulk.bootinfo; import hos.memory; import ldc.attributes; +/** + * HULK entry point. + * + * @param bootinfo Pointer to HULK boot information structure. + */ @(ldc.attributes.section(".hulk_start")) extern(C) void hulk_start(ulong rdi, ulong rsi, ulong rdx, BootInfo * bootinfo) {