47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
/* base.h: Basic definitions
|
|
* Created: 2026-03-10
|
|
* Author: Aryadev Chavali
|
|
* License: See end of file
|
|
*/
|
|
|
|
#ifndef BASE_H
|
|
#define BASE_H
|
|
|
|
#include <assert.h>
|
|
#include <stdint.h>
|
|
|
|
typedef uint8_t u8;
|
|
typedef uint16_t u16;
|
|
typedef uint32_t u32;
|
|
typedef uint64_t u64;
|
|
|
|
typedef int8_t i8;
|
|
typedef int16_t i16;
|
|
typedef int32_t i32;
|
|
typedef int64_t i64;
|
|
|
|
static_assert(sizeof(float) == 4, "f32 requires 4 byte floats");
|
|
static_assert(sizeof(double) == 8, "f64 requires 8 byte doubles");
|
|
typedef float f32;
|
|
typedef double f64;
|
|
|
|
#define MAX(A, B) ((A) > (B) ? (A) : (B))
|
|
#define SAFE_SUB(A, B) ((A) < (B) ? 0 : (A) - (B))
|
|
// 64 byte programs
|
|
#define SIZEOF_PROGRAM (1LU << 6)
|
|
|
|
#endif
|
|
|
|
/* Copyright (C) 2026 Aryadev Chavali
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License Version 2 for
|
|
* details.
|
|
|
|
* You may distribute and modify this code under the terms of the GNU General
|
|
* Public License Version 2, which you should have received a copy of along with
|
|
* this program. If not, please go to <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|