add: sqrt, neg instructions, fix: pushing register with value 0

This commit is contained in:
2024-01-20 19:36:41 +01:00
parent 0a8421fa4c
commit 2ab0d16928
4 changed files with 44 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ OBJ = $(SRC:.c=.o)
NAME = pasm
CC = gcc
CFLAGS = -Wall -Wextra -Wpedantic -Iinclude -s -Os -fno-ident -fno-asynchronous-unwind-tables
CLIBS =
CLIBS = -lm
all: $(NAME)