Aliases for builtin types

CPCtelera’s short useful aliases for standard SDCC built-in types.

u8unsigned char (u8 = unsigned 8-bits, 1 byte )
i8signed char (i8 = integer 8-bits, 1 byte )
u16unsigned int (u16 = unsigned 16-bits, 2 bytes)
i16signed int (i16 = integer 16-bits, 2 bytes)
u32unsigned long (u32 = unsigned 32-bits, 4 bytes)
i32signed long (i32 = integer 32-bits, 4 bytes)
u64unsigned long long (u32 = unsigned 64-bits, 8 bytes)
i64signed long long (i32 = integer 64-bits, 8 bytes)
f32float (f32 = float 32-bits, 4 bytes)
Close