-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add first implementation of mlkem-768 for ARM M4
- Loading branch information
1 parent
a9a1452
commit 55508ba
Showing
13 changed files
with
2,705 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Define the compiler | ||
JASMINC = jasminc | ||
|
||
# Define the target executable | ||
TARGET = mlkem-768-arm.s | ||
|
||
# Define the source files | ||
SRCS = kem.jazz | ||
|
||
# Define the compilation flags | ||
JFLAGS = -arch arm-m4 | ||
|
||
# Default target | ||
all: $(TARGET) | ||
|
||
# Rule to build the target | ||
$(TARGET): $(SRCS) | ||
$(JASMINC) $(JFLAGS) $(SRCS) -o $(TARGET) | ||
|
||
|
||
# Clean up | ||
clean: | ||
rm -f $(TARGET) |
Oops, something went wrong.