Skip to content

Commit

Permalink
added SSE handler prototypes
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvraj1803 committed Nov 2, 2023
1 parent 57e6cbf commit 640ed01
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ OBJ += ./build/fs/ff.o
OBJ += ./build/fs/diskio.o
OBJ += ./build/shell/shell.o
OBJ += ./build/debug/debug.o
OBJ += ./build/sse/sse.o

.PHONY: all
all: sdcard kernel8.img
Expand Down Expand Up @@ -72,6 +73,10 @@ all: sdcard kernel8.img
./build/debug/%.o : ./debug/%.c
$(CC) $(CFLAGS) -c $< -o $@

./build/sse/%.o : ./sse/%.c
$(CC) $(CFLAGS) -c $< -o $@


kernel8.img : $(OBJ)
$(LD) -T linker.ld -o ./deltaV.elf $(OBJ_C) $(OBJ)
$(OBJCOPY) ./deltaV.elf -O binary ./kernel8.img
Expand Down
2 changes: 1 addition & 1 deletion guests/deltaOS
Submodule deltaOS updated from ad1421 to 57d337
3 changes: 3 additions & 0 deletions include/sse/sse.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#ifndef __SSE_H__
#define __SSE_H__
#endif
1 change: 1 addition & 0 deletions sse/sse.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "sse/sse.h"

0 comments on commit 640ed01

Please sign in to comment.