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 @@
// ATA PIO driver implementation
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../kernel/io.h"

View File

@@ -1,7 +1,7 @@
// ATA PIO driver implementation header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef ATA_H
#define ATA_H

View File

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

View File

@@ -1,7 +1,7 @@
// Framebuffer driver header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef FRAMEBUFFER_H
#define FRAMEBUFFER_H

View File

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

View File

@@ -1,7 +1,7 @@
// Keyboard driver header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef KB_H
#define KB_H

View File

@@ -1,7 +1,7 @@
// Serial I/O driver
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/io.h"
#include "serial.h"

View File

@@ -1,7 +1,7 @@
// Serial I/O driver header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef SERIAL_H
#define SERIAL_H

View File

@@ -1,7 +1,7 @@
// Programmable Interval Timer channel 0 driver
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/system.h"
#include "../libc/stdio.h"

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

View File

@@ -1,7 +1,7 @@
// Cryptography routines for blankos/libc
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "crypto.h"
#include <stdint.h>

View File

@@ -1,7 +1,7 @@
// Cryptography routines for blankos/libc header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CRYPTO_H
#define CRYPTO_H

View File

@@ -1,7 +1,7 @@
// Ctype implementation for blankos/libc
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include <stdbool.h>

View File

@@ -1,7 +1,7 @@
// Ctype implementation for blankos/libc header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CTYPE_H
#define CTYPE_H

View File

@@ -1,7 +1,7 @@
// Standard input/output implementation for blankos/libc
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/io.h"
#include "stdio.h"

View File

@@ -1,7 +1,7 @@
// Standard input/output implementation for blankos/libc header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef STDIO_H
#define STDIO_H

View File

@@ -1,7 +1,7 @@
// String operations implementation for blankos/libc
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../kernel/system.h"

View File

@@ -1,7 +1,7 @@
// String operations implementation for blankos/libc header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef STRING_H
#define STRING_H

View File

@@ -1,7 +1,7 @@
// Simple brainfuck interpreter program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/system.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Cipher programs
// 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 "ciphers.h"

View File

@@ -1,7 +1,7 @@
// Cipher programs header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CIPHERS_H
#define CIPHERS_H

View File

@@ -1,7 +1,7 @@
// Conway's Game of Life program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "conway.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Conway's Game of Life program header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CONWAY_H
#define CONWAY_H

View File

@@ -1,7 +1,7 @@
// Basic math expression lexer and parser program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../kernel/system.h"

View File

@@ -1,7 +1,7 @@
// Miscellaneous small programs
// 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 "../kernel/system.h"

View File

@@ -1,7 +1,7 @@
// Prime number computation program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Global program entry points header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef PROGRAMS_H
#define PROGRAMS_H

View File

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

View File

@@ -1,7 +1,7 @@
// Pseudo-random word generation program
// 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/crypto.h"