-
Notifications
You must be signed in to change notification settings - Fork 2
Home
Arif Balik edited this page Aug 6, 2019
·
1 revision
Welcome to the Proper Scientific Calculator Project. This project aims to create a well documented open source scientific calculator with a highly portable math expression parser called Euler.
Project has the following template;
root
├── arch
│ ├── linux
│ │ ├── Makefile
│ │ └── main.c
│ └── arm
│ ├── libopencm3
│ ├── stm32f746ng
│ │ ├── Makefile
│ │ └── main.c
│ └── ...
│
│
└── euler
├── inc
│ └── ...
├── src
│ └── ...
└── parser
├── grammar.y
├── lexer.re
└── ...
In the arch directory there are currently supported architectures, and in the euler directory there is a platform independent math expression parser.
There is an additional folder which is called build which will be generated when make
command is executed.