Sign in

username:

password:



Not a member?

Search Comp.Arch.FPGA



Search tips

fpga by Keywords

Altera | ASIC | CPLD | Cyclone | DCM | DDR | DSP | Ethernet | ISE | JTAG | Linux | LVDS | Microblaze | ML310 | Modelsim | NIOS | OPB | PCI | Quartus | RocketIO | SDRAM | Spartan | Spartan3 | SRAM | Stratix | Verilog | VHDL | Virtex | Virtex-4 | Virtex-II | Xilinx | XST

Ads

See Also

DSPEmbedded SystemsElectronics

Comp.Arch.FPGA | microblaze with FSL

There are 3 messages in this thread.

You are currently looking at messages 0 to 3.

microblaze with FSL - upforever - 2006-02-13 20:26:00

I have used sysgen to build a model with
microblaze, but i don't know thedifference between the two functions: microblaze_nbwrite_datafsl andmicroblaze_bwrite_datafsl. Will the later function stop the microblazeuntil finishing writing operation? thanks.
moreover, can i debug my c source code of microblaze in sysgen? if so,how?


______________________________
Join the blogging team on FPGARelated.com and earn rewards! Details Here.



Re: microblaze with FSL - siva.velusamy@gmail.com - 2006-02-14 01:59:00

microblaze_nbwrite_datafsl = non blocking write
microblaze_bwrite_datafsl = blocking write

On a non-blocking write the processor sets the control bit if the fsl
bus is full. On a blocking write the processor waits until the FSL bus
has space. More details can be obtained from the documentation (look
for the put instruction and its variants).

/Siva
Xilinx, Inc.

______________________________
Join the blogging team on FPGARelated.com and earn rewards! Details Here.

Re: microblaze with FSL - upforever - 2006-02-15 21:33:00

thanks