initial decimal number code, needs work

- need to change to have implicit decimal point after first digit
- need to rework for code size
This commit is contained in:
Jeff Wang
2019-03-22 16:38:35 -04:00
parent 7dddcb0902
commit d351995294
5 changed files with 771 additions and 1 deletions

View File

@ -3,7 +3,7 @@ STCCODESIZE ?= 13000
SDCCOPTS ?= --code-size $(STCCODESIZE) --xram-size 0 --stack-auto
FLASHFILE ?= main.hex
SRC = src/lcd.c src/key.c src/utils.c
SRC = src/lcd.c src/key.c src/utils.c src/decn/decn.c
OBJ=$(patsubst src%.c,build%.rel, $(SRC))