initial calculator code

This commit is contained in:
Jeff Wang
2019-03-31 19:20:28 -04:00
parent bdecc32b86
commit ecb0492534
6 changed files with 338 additions and 12 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/decn/decn.c
SRC = src/lcd.c src/key.c src/utils.c src/decn/decn.c src/calc.c
OBJ=$(patsubst src%.c,build%.rel, $(SRC))