Skip to content

Commit

Permalink
Add first implementation of mlkem-768 for ARM M4
Browse files Browse the repository at this point in the history
  • Loading branch information
esquivel71 committed Jan 24, 2025
1 parent a9a1452 commit 55508ba
Show file tree
Hide file tree
Showing 13 changed files with 2,705 additions and 0 deletions.
23 changes: 23 additions & 0 deletions code/jasmin/arm/Makefile
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)
Loading

0 comments on commit 55508ba

Please sign in to comment.