diff --git a/src/drivers/ata.c b/src/drivers/ata.c index e67df19..bdcc09f 100644 --- a/src/drivers/ata.c +++ b/src/drivers/ata.c @@ -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 #include "../kernel/io.h" diff --git a/src/drivers/ata.h b/src/drivers/ata.h index f585c5f..8eb11d3 100644 --- a/src/drivers/ata.h +++ b/src/drivers/ata.h @@ -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 diff --git a/src/drivers/framebuffer.c b/src/drivers/framebuffer.c index b1dd622..9b4b231 100644 --- a/src/drivers/framebuffer.c +++ b/src/drivers/framebuffer.c @@ -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 #include "framebuffer.h" diff --git a/src/drivers/framebuffer.h b/src/drivers/framebuffer.h index 06e14bd..84ded03 100644 --- a/src/drivers/framebuffer.h +++ b/src/drivers/framebuffer.h @@ -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 diff --git a/src/drivers/kb.c b/src/drivers/kb.c index 52bdc4f..f4c556c 100644 --- a/src/drivers/kb.c +++ b/src/drivers/kb.c @@ -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" diff --git a/src/drivers/kb.h b/src/drivers/kb.h index 9a4574b..d40730f 100644 --- a/src/drivers/kb.h +++ b/src/drivers/kb.h @@ -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 diff --git a/src/drivers/serial.c b/src/drivers/serial.c index 90d7c39..a9d369f 100644 --- a/src/drivers/serial.c +++ b/src/drivers/serial.c @@ -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" diff --git a/src/drivers/serial.h b/src/drivers/serial.h index b69740f..bfa2cfd 100644 --- a/src/drivers/serial.h +++ b/src/drivers/serial.h @@ -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 diff --git a/src/drivers/timer.c b/src/drivers/timer.c index 40b479b..b3b36c1 100644 --- a/src/drivers/timer.c +++ b/src/drivers/timer.c @@ -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" diff --git a/src/kernel/gdt.c b/src/kernel/gdt.c index fc465c2..e87a980 100644 --- a/src/kernel/gdt.c +++ b/src/kernel/gdt.c @@ -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" diff --git a/src/kernel/gdt.h b/src/kernel/gdt.h index 950fecc..3f2f310 100644 --- a/src/kernel/gdt.h +++ b/src/kernel/gdt.h @@ -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 diff --git a/src/kernel/idt.c b/src/kernel/idt.c index d981ca3..f859ec4 100644 --- a/src/kernel/idt.c +++ b/src/kernel/idt.c @@ -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" diff --git a/src/kernel/idt.h b/src/kernel/idt.h index 5a55306..a4a85f6 100644 --- a/src/kernel/idt.h +++ b/src/kernel/idt.h @@ -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 diff --git a/src/kernel/io.h b/src/kernel/io.h index 6c3ec01..518065d 100644 --- a/src/kernel/io.h +++ b/src/kernel/io.h @@ -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 diff --git a/src/kernel/io.s b/src/kernel/io.s index 88cb997..7ed8685 100644 --- a/src/kernel/io.s +++ b/src/kernel/io.s @@ -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 diff --git a/src/kernel/irq.c b/src/kernel/irq.c index 87c0098..05f6f6f 100644 --- a/src/kernel/irq.c +++ b/src/kernel/irq.c @@ -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" diff --git a/src/kernel/isr.c b/src/kernel/isr.c index d4934fd..a692d9b 100644 --- a/src/kernel/isr.c +++ b/src/kernel/isr.c @@ -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" diff --git a/src/kernel/kheap.c b/src/kernel/kheap.c index a0711b4..091ac0c 100644 --- a/src/kernel/kheap.c +++ b/src/kernel/kheap.c @@ -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 diff --git a/src/kernel/kheap.h b/src/kernel/kheap.h index c24180b..1443b31 100644 --- a/src/kernel/kheap.h +++ b/src/kernel/kheap.h @@ -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 diff --git a/src/kernel/kmain.c b/src/kernel/kmain.c index 11405d5..14248bc 100644 --- a/src/kernel/kmain.c +++ b/src/kernel/kmain.c @@ -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" diff --git a/src/kernel/kmain.h b/src/kernel/kmain.h index 4d15515..7c7ce2d 100644 --- a/src/kernel/kmain.h +++ b/src/kernel/kmain.h @@ -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 diff --git a/src/kernel/loader.s b/src/kernel/loader.s index fd38650..aa53c33 100644 --- a/src/kernel/loader.s +++ b/src/kernel/loader.s @@ -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 diff --git a/src/kernel/paging.c b/src/kernel/paging.c index 87125ee..daa964a 100644 --- a/src/kernel/paging.c +++ b/src/kernel/paging.c @@ -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 #include "paging.h" diff --git a/src/kernel/paging.h b/src/kernel/paging.h index 9e96899..fa7f063 100644 --- a/src/kernel/paging.h +++ b/src/kernel/paging.h @@ -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 diff --git a/src/kernel/shell.c b/src/kernel/shell.c index 0739af1..28b8c2c 100644 --- a/src/kernel/shell.c +++ b/src/kernel/shell.c @@ -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" diff --git a/src/kernel/sysinfo.c b/src/kernel/sysinfo.c index 39839ae..088f41d 100644 --- a/src/kernel/sysinfo.c +++ b/src/kernel/sysinfo.c @@ -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" diff --git a/src/kernel/sysinfo.h b/src/kernel/sysinfo.h index a6e3a93..d05a265 100644 --- a/src/kernel/sysinfo.h +++ b/src/kernel/sysinfo.h @@ -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 diff --git a/src/kernel/system.c b/src/kernel/system.c index 3f39277..c2766f5 100644 --- a/src/kernel/system.c +++ b/src/kernel/system.c @@ -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 diff --git a/src/kernel/system.h b/src/kernel/system.h index e0123d3..66416f5 100644 --- a/src/kernel/system.h +++ b/src/kernel/system.h @@ -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 diff --git a/src/libc/crypto.c b/src/libc/crypto.c index d666214..ba2a48e 100644 --- a/src/libc/crypto.c +++ b/src/libc/crypto.c @@ -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 diff --git a/src/libc/crypto.h b/src/libc/crypto.h index fdaced1..fddbbc9 100644 --- a/src/libc/crypto.h +++ b/src/libc/crypto.h @@ -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 diff --git a/src/libc/ctype.c b/src/libc/ctype.c index 0a89be6..abf9ce4 100644 --- a/src/libc/ctype.c +++ b/src/libc/ctype.c @@ -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 #include diff --git a/src/libc/ctype.h b/src/libc/ctype.h index 5c29a4e..810e4fb 100644 --- a/src/libc/ctype.h +++ b/src/libc/ctype.h @@ -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 diff --git a/src/libc/stdio.c b/src/libc/stdio.c index 0b6aef2..3d7edb3 100644 --- a/src/libc/stdio.c +++ b/src/libc/stdio.c @@ -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" diff --git a/src/libc/stdio.h b/src/libc/stdio.h index 3ffacaa..84dac49 100644 --- a/src/libc/stdio.h +++ b/src/libc/stdio.h @@ -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 diff --git a/src/libc/string.c b/src/libc/string.c index e013313..681298d 100644 --- a/src/libc/string.c +++ b/src/libc/string.c @@ -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 #include "../kernel/system.h" diff --git a/src/libc/string.h b/src/libc/string.h index 2b04950..b3fc1ce 100644 --- a/src/libc/string.h +++ b/src/libc/string.h @@ -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 diff --git a/src/programs/bf.c b/src/programs/bf.c index ee0bc90..da330c7 100644 --- a/src/programs/bf.c +++ b/src/programs/bf.c @@ -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" diff --git a/src/programs/ciphers.c b/src/programs/ciphers.c index 3a86da3..4d9a324 100644 --- a/src/programs/ciphers.c +++ b/src/programs/ciphers.c @@ -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" diff --git a/src/programs/ciphers.h b/src/programs/ciphers.h index 83f43a5..59a3d94 100644 --- a/src/programs/ciphers.h +++ b/src/programs/ciphers.h @@ -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 diff --git a/src/programs/conway.c b/src/programs/conway.c index df9a867..61e4c4a 100644 --- a/src/programs/conway.c +++ b/src/programs/conway.c @@ -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" diff --git a/src/programs/conway.h b/src/programs/conway.h index 7fe7794..e2f25ff 100644 --- a/src/programs/conway.h +++ b/src/programs/conway.h @@ -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 diff --git a/src/programs/math.c b/src/programs/math.c index a502916..3acd2b1 100644 --- a/src/programs/math.c +++ b/src/programs/math.c @@ -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 #include "../kernel/system.h" diff --git a/src/programs/misc.c b/src/programs/misc.c index 7c37e1b..bcf6729 100644 --- a/src/programs/misc.c +++ b/src/programs/misc.c @@ -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" diff --git a/src/programs/primes.c b/src/programs/primes.c index db99dbb..cc0372b 100644 --- a/src/programs/primes.c +++ b/src/programs/primes.c @@ -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 #include "../libc/stdio.h" diff --git a/src/programs/programs.h b/src/programs/programs.h index 16e9b91..1dbf1b3 100644 --- a/src/programs/programs.h +++ b/src/programs/programs.h @@ -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 diff --git a/src/programs/sysinfo.c b/src/programs/sysinfo.c index 2e7f7c8..cd37a36 100644 --- a/src/programs/sysinfo.c +++ b/src/programs/sysinfo.c @@ -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" diff --git a/src/programs/words.c b/src/programs/words.c index 03beaf5..9128f05 100644 --- a/src/programs/words.c +++ b/src/programs/words.c @@ -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"