nanoFORTH v2.2
Loading...
Searching...
No Matches
nanoFORTH.h
Go to the documentation of this file.
1
5#ifndef __SRC_NANOFORTH_H
6#define __SRC_NANOFORTH_H
7
8extern void n4_setup(const char *code=0, Stream &io=Serial, int ucase=0);
9extern void n4_api(int i, void (*fp)());
10extern void n4_push(int v);
11extern int n4_pop();
12extern void n4_run();
13
14#endif // __SRC_NANOFORTH_H
void n4_run()
Definition n4.cpp:67
void n4_api(int i, void(*fp)())
Definition n4.cpp:66
int n4_pop()
Definition n4.cpp:58
void n4_setup(const char *code=0, Stream &io=Serial, int ucase=0)
Definition n4.cpp:65
void n4_push(int v)
Definition n4.cpp:57