New feature(s):
- Network stack
- Piping commands into a udpsend message
Bug fix(es):
-N/A
This commit is contained in:
Chris
2026-02-05 21:59:21 +01:00
parent d9fc8fbeda
commit 89bdb860dd
34 changed files with 1322 additions and 16 deletions

View File

@@ -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();
}
}