misc/kforth: Part 0x04 - parsing numerics.

This commit is contained in:
2018-02-23 19:19:29 -08:00
parent 0ae7d49593
commit 505d71906c
12 changed files with 479 additions and 2 deletions

View File

@@ -4,4 +4,7 @@
#include <stddef.h>
#include <stdint.h>
typedef int32_t KF_INT;
constexpr uint8_t STACK_SIZE = 128;
#endif