You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
314 B
21 lines
314 B
/**
|
|
* Forth main entry-point
|
|
*
|
|
* Created on 2021/11/13.
|
|
*/
|
|
|
|
#ifndef FORTH_H
|
|
#define FORTH_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "fh_config.h"
|
|
#include "fh_error.h"
|
|
#include "fh_globals.h"
|
|
#include "fh_runtime.h"
|
|
#include "fh_input.h"
|
|
#include "fh_print.h"
|
|
|
|
#endif //FORTH_H
|
|
|