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