does anyone know how to use C++ int__64 type variables when we want to
implement it on NIOS IDE?
coz IDE doesn't support upper than 32 bit integers.how can we use them
in a big and intricate code. I mean that we can not devide all of the
64 bit variables into two 32 bit.coz the C++ code is very complex and
it has lots of this type variables.
To post a message, send it to: f...@yahoogroups.com
To unsubscribe, send a blank message to: f...@yahoogroups.com

(You need to be a member of fpga-cpu -- send a blank email to fpga-cpu-subscribe@yahoogroups.com )
> does anyone know how to use C++ int__64 type variables when we want to
> implement it on NIOS IDE?
> coz IDE doesn't support upper than 32 bit integers.how can we use them
I've never used NIOS and don't know much C++, but isn't the compiler GCC?
If so, check the compiler docs.
GCC does support the C standard integer types, int8_t, int16_t, int32_t,
int64_t, uint8_t, uint16_t, uint32_t, and uint64_t. They are defined
in stdint.h. That's what I use in C code, but I'd think they ought
to work in C++ as well.
To post a message, send it to: f...@yahoogroups.com
To unsubscribe, send a blank message to: f...@yahoogroups.com

(You need to be a member of fpga-cpu -- send a blank email to fpga-cpu-subscribe@yahoogroups.com )