-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.h
41 lines (29 loc) · 2.15 KB
/
_config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* Kabuki Tek Toolkit @version 0.x
@link https://github.com/kabuki-starship/kabuki.toolkit.tek.git
@file /_config.h
@author Cale McCollough <https://cookingwithcale.org>
@license Copyright 2014-20 (C) Kabuki Starship (TM) <kabukistarship.com>.
This Source Code Form is subject to the terms of the Mozilla Public License, v.
2.0. If a copy of the MPL was not distributed with this file, You can obtain one
at <https://mozilla.org/MPL/2.0/>. */
#pragma once
#ifndef MODULE_CONFIG_HEADER
#define MODULE_CONFIG_HEADER 1
#include "../script2/_config_header.inl"
#define SEAM SCRIPT2_LIST
#define ASSEMBLY_TYPE ASSEMBLE_EXE 1
#define SCRIPT2_RUN_TESTS YES_0
#define ALU_SIZE ALU_64_BIT
#define CPU_ENDIAN CPU_ENDIAN_LITTLE
#define USING_CONSOLE YES_0
#define USING_UTF8 YES_0
#define USING_UTF16 YES_0
#define USING_UTF32 YES_0
#define LARGEST_CHAR STRING_TYPE_1
#define USING_STR STRING_TYPE_1
#define USING_FP 8
#define USING_FP4 YES_0
#define USING_FP8 YES_0
#define USING_16_BYTE_POD_TYPES NO_0
#include "../script2/_config_footer.inl"
#endif