Sign in

username:

password:



Not a member?

Search fpga-cpu



Search tips

Subscribe to fpga-cpu



fpga-cpu by Keywords

Altera | CISCifying | IDE | ISA | Java | JHDL | JTAG | LBU | MicroBlaze | PAR | PCI | RISC | SoC | Spartan | Transputers | Verilog | VHDL | Virtex | VLIW | WebPack | Xilinx | Xsoc | YARD-1A

Ads

Discussion Groups

See Also

DSPFPGAElectronics

Discussion Groups | FPGA-CPU | use C++ int__64 type variables in NIOS IDE

This list is for discussion of the design and implementation of field-programmable gate array based processors and integrated systems. It is also for discussion and community support of the XSOC Project (see http://www.fpgacpu.org/xsoc).

use C++ int__64 type variables in NIOS IDE - paria354 - Nov 6 6:33:50 2007

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 )


Re: use C++ int__64 type variables in NIOS IDE - Eric Smith - Nov 6 21:19:18 2007

> 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 )