Post Reply 
Scientific RPN Calculator (with ATTINY85)
03-09-2018, 10:02 AM (This post was last modified: 03-09-2018 10:03 AM by Paul Dale.)
Post: #28
RE: Scientific RPN Calculator (with ATTINY85)
If the stack is put into a struct, they be contiguous:

Code:
static struct {
    double x;
    double y;
    double z;
    double u;
} stack;

Or use different names and some macros to avoid changing any other code.


Pauli
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Scientific RPN Calculator (with ATTINY85) - Paul Dale - 03-09-2018 10:02 AM



User(s) browsing this thread: 1 Guest(s)