Fix: header-comment link

This commit is contained in:
xamidev
2024-08-24 17:23:26 +02:00
parent fbd4fa6089
commit d10e00835c
48 changed files with 48 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
// Global descriptor table setup
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "gdt.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Global descriptor table setup header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef GDT_H
#define GDT_H

View File

@@ -1,7 +1,7 @@
// Interrupt descriptor table setup
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "idt.h"
#include "system.h"

View File

@@ -1,7 +1,7 @@
// Interrupt descriptor table setup header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef IDT_H
#define IDT_H

View File

@@ -1,7 +1,7 @@
// Raw CPU port I/O kernel module header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef IO_H
#define IO_H

View File

@@ -1,7 +1,7 @@
; Raw CPU port I/O kernel module
; Author: xamidev
; Licensed under the Unlicense. See the repo below.
; https//github.com/xamidev/blankos
; https://github.com/xamidev/blankos
global outb

View File

@@ -1,7 +1,7 @@
// Interrupt Requests setup
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "system.h"
#include "io.h"

View File

@@ -1,7 +1,7 @@
// Interrupt service routines setup
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "system.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Kernel heap management
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "kheap.h"
#include <stdint.h>

View File

@@ -1,7 +1,7 @@
// Kernel heap management header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef KHEAP_H
#define KHEAP_H

View File

@@ -1,7 +1,7 @@
// Kernel entry point
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../libc/stdio.h"
#include "../drivers/serial.h"

View File

@@ -1,7 +1,7 @@
// Kernel entry point header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef KMAIN_H
#define KMAIN_H

View File

@@ -1,7 +1,7 @@
; Kernel loader assembly stub and multiboot2 header
; Author: xamidev
; Licensed under the Unlicense. See the repo below.
; https//github.com/xamidev/blankos
; https://github.com/xamidev/blankos
global loader

View File

@@ -1,7 +1,7 @@
// Paging kernel module
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "paging.h"

View File

@@ -1,7 +1,7 @@
// Paging kernel module header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef PAGING_H
#define PAGING_H

View File

@@ -1,7 +1,7 @@
// Basic shell and commands kernel module
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "system.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// System information kernel module
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../libc/stdio.h"
#include "../libc/string.h"

View File

@@ -1,7 +1,7 @@
// System information kernel module header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef SYSINFO_H
#define SYSINFO_H

View File

@@ -1,7 +1,7 @@
// System utilities and routines kernel module
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "system.h"
#include <stdint.h>

View File

@@ -1,7 +1,7 @@
// System utilities and routines kernel module header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef SYSTEM_H
#define SYSTEM_H