summaryrefslogtreecommitdiff
path: root/src/kernel/core/sys.c
blob: 1e07f7c9f09a49a4323d3a36c1b673d95bd07c82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "sys.h"
#include "monitor.h"

void outb(uint16_t port, uint8_t value) {
	asm volatile("outb %1, %0" : : "dN"(port), "a"(value));
}

void outw(uint16_t port, uint16_t value) {
	asm volatile("outw %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;
}

void panic(char* message, char* file, int line) {
	monitor_write("\n>> PANIC: >>");
	monitor_write(message); monitor_write("<< at "); monitor_write(file);
	monitor_write(":"); monitor_writeDec(line);
	monitor_write("\nSystem halted -_-'");
	asm volatile("cli; hlt");
}

static uint32_t if_locks = 1;

void cli() {
	asm volatile("cli");
	if_locks++;
}

void sti() {
	if (if_locks > 0) if_locks--;
	if (if_locks == 0) asm volatile("sti");
}