[misc] Add vim hints to the top of all modules
This commit is contained in:
parent
15c01ce442
commit
385fdae86c
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Kevin Lange's Slab Allocator
|
||||
*
|
||||
* Implemented for CS241, Fall 2010, machine problem 7
|
||||
@ -940,10 +941,3 @@ static void * __attribute__ ((malloc)) klcalloc(size_t nmemb, size_t size) {
|
||||
return ptr;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
/*
|
||||
* vim:noexpandtab
|
||||
* vim:tabstop=4
|
||||
* vim:shiftwidth=4
|
||||
*/
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Kernel Argument Parser
|
||||
*
|
||||
* Parses arguments passed by, ie, a Multiboot bootloader.
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* CMOS Driver
|
||||
*
|
||||
* Part of the ToAruOS Kernel
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Copyright (c) 2006-2007 - http://brynet.biz.tm - <brynet@gmail.com>
|
||||
* All rights reserved.
|
||||
*
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* ELF Static Executable Loader
|
||||
*
|
||||
* Part of the ToAru OS Kernel
|
||||
@ -157,8 +158,3 @@ system(
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* vim:noexpandtab
|
||||
* vim:tabstop=4
|
||||
* vim:shiftwidth=4
|
||||
*/
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Tiny FPU enable module.
|
||||
*
|
||||
* Part of the ToAruOS Kernel
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Global Descriptor Tables module
|
||||
*
|
||||
* Part of the ToAruOS Kernel
|
||||
|
@ -1,3 +1,8 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Interrupt Descriptor Tables
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
/*
|
||||
|
@ -1,3 +1,8 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Interrupt Requests
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
extern void _irq0();
|
||||
|
@ -1,3 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Interrupt Services Requests
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
/*
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Low-level keyboard interrupt driver.
|
||||
*
|
||||
* Part of the ToAruOS Kernel
|
||||
|
@ -1,4 +1,5 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Kernel printf implementation
|
||||
*
|
||||
* Simple, painfully lacking, implementation of printf(),
|
||||
|
@ -1,7 +1,6 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Kernel Memory Manager
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
|
@ -1,3 +1,6 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
* Mouse driver
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
uint8_t mouse_cycle = 0;
|
||||
|
@ -1,3 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Multiboot (GRUB) handler
|
||||
*/
|
||||
#include <system.h>
|
||||
#include <multiboot.h>
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Panic functions
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
void kernel_halt() {
|
||||
|
@ -1,3 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Processes
|
||||
*/
|
||||
#include <system.h>
|
||||
#include <process.h>
|
||||
#include <tree.h>
|
||||
|
@ -1,7 +1,6 @@
|
||||
/**
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Serial Port Driver
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* ToAruOS Kernel Debugger Shell
|
||||
*
|
||||
|
@ -1,6 +1,7 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Syscall Tables
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
#include <syscall.h>
|
||||
|
@ -1,6 +1,11 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* System Functions
|
||||
*
|
||||
* Part of the ToAru OS Kernel
|
||||
* (C) 2011 Kevin Lange
|
||||
* Released under the terms of the NCSA License, see the included
|
||||
* README file for further information.
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Task Switching
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
#include <process.h>
|
||||
|
@ -1,3 +1,7 @@
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Programmable Interrupt Timer
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
#define PIT_A 0x40
|
||||
|
@ -1,4 +1,7 @@
|
||||
/* vim: noexpandtab shiftwidth=4 tabstop=4
|
||||
*
|
||||
* Virtual File System
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
#include <fs.h>
|
||||
|
@ -1,6 +1,9 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* VGA Text-mode handlers
|
||||
*
|
||||
* (For debugging, etc.)
|
||||
*
|
||||
*/
|
||||
#include <system.h>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Graphical mode terminal font
|
||||
*
|
||||
*/
|
||||
/* This is the default VGA 8 x 12 font */
|
||||
#include <system.h>
|
||||
|
@ -1,7 +1,6 @@
|
||||
/*
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* ANSI-esque Terminal Escape Driver
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
||||
*
|
||||
* Bochs VBE / QEMU vga=std Graphics Driver
|
||||
*/
|
||||
|
@ -1,18 +0,0 @@
|
||||
/*
|
||||
* vim:tabstop=4
|
||||
* vim:noexpandtab
|
||||
*
|
||||
* Standard VGA-like Alphanumeric Font
|
||||
*/
|
||||
|
||||
char fb_font [][8] = {
|
||||
/* _ */
|
||||
{ 0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00, /* 4 */
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00 } /* 8 */
|
||||
};
|
Loading…
Reference in New Issue
Block a user