Start kf (kyle's forth)

Here we go with another pass at writing a Forth.
This commit is contained in:
Kyle Isom 2018-02-21 10:50:23 -08:00
parent 6d1ad44409
commit 708e812049
3 changed files with 27 additions and 0 deletions

9
misc/kf/build.yaml Normal file
View File

@ -0,0 +1,9 @@
compilers:
cxx: clang++
ld: clang++
targets:
cc:
kf:
- io.cc
- kf.cc

10
misc/kf/io.h Normal file
View File

@ -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__

8
misc/kf/kf.cc Normal file
View File

@ -0,0 +1,8 @@
#include "io.h"
int
main(void)
{
return 0;
}