blob: 36ed6d0d673103578a8afca1b283e193b87bcbb6 (
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
|
#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(">> PANIC: >>");
monitor_write(message); monitor_write("<< in file "); monitor_write(file);
monitor_write("\nSystem halted T_T");
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");
}
|