Skip to content
Arif Balik edited this page Aug 6, 2019 · 1 revision

Proper Scientific Calculator

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.

Clone this wiki locally