This commit is contained in:
2025-07-05 16:25:01 +02:00
commit 6d9d52e31c
2 changed files with 332 additions and 0 deletions

18
README.md Normal file
View File

@@ -0,0 +1,18 @@
# webserver
Written as a tiny project to learn more about 64-bit x86 assembly and the Linux kernel ABI. The syntax here is Intel for GNU AS. The code is public domain.
### Build process
```
as -g server.s -o server.o && ld server.o -o exe
sudo ./exe
```
### Testing
```
nc localhost 80
GET /anything HTTP/1.0
POST /anything HTTP/1.0
```