Switched from floats to halfword

Registers are now just words, with pushing from and moving to
registers with specified subtypes just pushing those types into the
word registers.  That means there are 8 word registers which can act
as 16 half word registers, which themselves can act as 64 byte
registers.
This commit is contained in:
2023-10-21 22:57:43 +01:00
parent 266b4e4572
commit dcedb70a5c
5 changed files with 201 additions and 229 deletions

View File

@@ -26,27 +26,29 @@ typedef float f32;
typedef double f64;
typedef uint8_t byte;
typedef u32 hword;
typedef u64 word;
typedef union
{
byte as_byte;
hword as_hword;
word as_word;
f64 as_float;
} data_t;
typedef enum
{
DATA_TYPE_NIL = 0,
DATA_TYPE_BYTE = 1,
DATA_TYPE_WORD = 3,
DATA_TYPE_FLOAT = 5,
DATA_TYPE_NIL = 0,
DATA_TYPE_BYTE,
DATA_TYPE_HWORD,
DATA_TYPE_WORD,
} data_type_t;
#define DBYTE(BYTE) ((data_t){.as_byte = (BYTE)})
#define DHWORD(HWORD) ((data_t){.as_hword = (HWORD)})
#define DWORD(WORD) ((data_t){.as_word = (WORD)})
#define DFLOAT(FLOAT) ((data_t){.as_float = (FLOAT)})
#define HWORD_SIZE sizeof(hword)
#define WORD_SIZE sizeof(word)
#define FLOAT_SIZE sizeof(f64)