Mercurial > lcfOS
view cos/kernel/klib.c @ 27:7f74363f4c82
Added some files for the python port
author | windel |
---|---|
date | Tue, 27 Dec 2011 18:59:02 +0100 |
parents | dcce92b1efbc |
children | 47b7df514243 |
line wrap: on
line source
#include "kernel.h" void panic(char *msg) { printf("Kernel panic: "); printf(msg); magicBochsBreak(); halt(); } void reboot() { while ( (inb(0x64) & 0x02) == 0x02) { ; } outb(0x64, 0xFE); } // IO port helpers: void outb(uint16_t port, uint8_t value) { asm volatile ("outb %1, %0" : : "dN" (port), "a" (value)); } uint8_t inb(uint16_t port) { uint8_t ret; asm volatile ("inb %1, %0" : "=a" (ret) : "dN" (port)); return ret; } uint16_t inw(uint16_t port) { uint16_t ret; asm volatile ("inw %1, %0" : "=a" (ret) : "dN" (port)); return ret; } // string functions: int strncmp(const char* s1, const char* s2, int size) { int i; for (i=0; i<size; i++) { if (s1[i] != s2[i]) return 0; } return 1; }