mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
V1.10
New feature(s): - Network stack - Piping commands into a udpsend message Bug fix(es): -N/A
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#include "ps2.h"
|
||||
#include "io.h"
|
||||
#include "wm.h"
|
||||
#include "network.h"
|
||||
#include <stdbool.h>
|
||||
|
||||
extern void serial_print(const char *s);
|
||||
@@ -9,6 +10,7 @@ extern void serial_print_hex(uint64_t n);
|
||||
// --- Timer Handler ---
|
||||
void timer_handler(void) {
|
||||
wm_timer_tick();
|
||||
network_process_frames();
|
||||
outb(0x20, 0x20); // EOI to Master PIC
|
||||
}
|
||||
|
||||
@@ -164,4 +166,4 @@ void mouse_handler(void) {
|
||||
|
||||
void ps2_init(void) {
|
||||
mouse_init();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user