Forum Discussion
Altera_Forum
Honored Contributor
16 years agoInteger in NIOS...
Hello as i know integer can hold 2^16 data but
typedef struct flash_region
{
int offset;/* Offset of this region from start of the flash */
int region_size;/* Size of this erase ...
Altera_Forum
Honored Contributor
16 years agoIndeed you can use also these types, but actually there are the same. If you looked at alt_types.h you have :
typedef signed char alt_8;
typedef unsigned char alt_u8;
typedef signed short alt_16;
typedef unsigned short alt_u16;
typedef signed long alt_32;
typedef unsigned long alt_u32;
typedef long long alt_64;
typedef unsigned long long alt_u64;