feat: add ethernet & TCP/IP stack

This commit is contained in:
2026-02-17 13:19:11 +01:00
parent f7e6ce70a0
commit 20fa8a9be2
23 changed files with 2409 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
* Net.hpp
* Network stack initialization
* Copyright (c) 2025 Daniel Hammer
*/
#pragma once
namespace Net {
// Initialize the entire networking stack
void Initialize();
}