Implement SSE instructions

This commit is contained in:
2026-03-07 17:36:09 +01:00
parent 40bfc1e916
commit 5e616c1879
16 changed files with 80 additions and 15 deletions

View File

@@ -17,7 +17,8 @@ c += amd64/bootmain.c \
S += amd64/intr_stub.S \
amd64/spin.S \
amd64/sched.S \
amd64/syscallentry.S
amd64/syscallentry.S \
amd64/sse.S
o += amd64/bootmain.o \
amd64/io.o \
@@ -37,4 +38,5 @@ o += amd64/bootmain.o \
amd64/proc.o \
amd64/syscall.o \
amd64/syscallentry.o \
amd64/gdt.o
amd64/gdt.o \
amd64/sse.o