Start kf (kyle's forth)
Here we go with another pass at writing a Forth.
This commit is contained in:
parent
6d1ad44409
commit
708e812049
|
@ -0,0 +1,9 @@
|
||||||
|
compilers:
|
||||||
|
cxx: clang++
|
||||||
|
ld: clang++
|
||||||
|
|
||||||
|
targets:
|
||||||
|
cc:
|
||||||
|
kf:
|
||||||
|
- io.cc
|
||||||
|
- kf.cc
|
|
@ -0,0 +1,10 @@
|
||||||
|
#ifndef __KF_IO_H__
|
||||||
|
#define __KF_IO_H__
|
||||||
|
|
||||||
|
// TODO(kyle): make this selectable by architecture.
|
||||||
|
|
||||||
|
class IO {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // __KF_IO_H__
|
|
@ -0,0 +1,8 @@
|
||||||
|
#include "io.h"
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
main(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue