engine: change bal_instruction_t to 32-bits

I do not know what I was thinking when I made it 64-bits.

Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
Ronald Caesar
2026-01-15 10:03:07 -04:00
parent 4cafd1bf67
commit 4e4e48e495

View File

@@ -9,8 +9,8 @@
#include <stdint.h>
typedef uint64_t bal_instruction_t;
typedef uint64_t bal_guest_address_t;
typedef uint32_t bal_instruction_t;
typedef uint16_t bal_instruction_count_t;
typedef uint16_t bal_ssa_id_t;
typedef uint8_t bal_bit_width_t;