niossram

所属分类:VHDL/FPGA/Verilog
开发工具:VHDL
文件大小:14885KB
下载次数:67
上传日期:2009-04-13 13:26:42
上 传 者ipvideo
说明:  altera fpga ep3c25器件微处理器开发,niosii+sram, 已编译通过,可直接下载到开发板
(altera fpga ep3c25 the development of microprocessor devices, niosii+ sram, compiled through, can be directly downloaded to the development board)

文件列表:
niossram\.sopc_builder\install.ptf (11692, 2009-02-27)
niossram\.sopc_builder\install2.ptf (687, 2009-02-27)
niossram\.sopc_builder\preferences.xml (553, 2009-02-27)
niossram\cpu.ocp (840, 2009-02-27)
niossram\cpu.v (420240, 2009-02-27)
niossram\cpu_bht_ram.mif (2392, 2009-02-27)
niossram\cpu_dc_tag_ram.mif (856, 2009-02-27)
niossram\cpu_ic_tag_ram.mif (1753, 2009-02-27)
niossram\cpu_jtag_debug_module.v (12429, 2009-02-27)
niossram\cpu_jtag_debug_module_wrapper.v (9850, 2009-02-27)
niossram\cpu_mult_cell.v (6105, 2009-02-27)
niossram\cpu_ociram_default_contents.mif (5878, 2009-02-27)
niossram\cpu_rf_ram_a.mif (600, 2009-02-27)
niossram\cpu_rf_ram_b.mif (600, 2009-02-27)
niossram\cpu_test_bench.v (39223, 2009-02-27)
niossram\db\altsyncram_4ib1.tdf (37030, 2009-02-27)
niossram\db\altsyncram_5ke1.tdf (24179, 2009-02-27)
niossram\db\altsyncram_6472.tdf (51139, 2009-02-27)
niossram\db\altsyncram_7ge1.tdf (39871, 2009-02-27)
niossram\db\altsyncram_ige1.tdf (18620, 2009-02-27)
niossram\db\altsyncram_k7e1.tdf (6585, 2009-02-27)
niossram\db\altsyncram_l1c1.tdf (37679, 2009-02-27)
niossram\db\altsyncram_n802.tdf (51179, 2009-02-27)
niossram\db\altsyncram_nmb1.tdf (30299, 2009-02-27)
niossram\db\altsyncram_u9e1.tdf (39397, 2009-02-27)
niossram\db\altsyncram_v9e1.tdf (39397, 2009-02-27)
niossram\db\cmpr_vdg.tdf (1539, 2009-02-27)
niossram\db\cntr_p9f.tdf (3040, 2009-02-27)
niossram\db\decode_jri.tdf (3471, 2009-02-27)
niossram\db\ded_mult_br81.tdf (3172, 2009-02-27)
niossram\db\dffpipe_93c.tdf (1312, 2009-02-27)
niossram\db\mult_add_dfr2.tdf (3072, 2009-02-27)
niossram\db\mult_add_ffr2.tdf (3061, 2009-02-27)
niossram\db\mux_dqc.tdf (10147, 2009-02-27)
niossram\db\niossram.(0).cnf.cdb (2008, 2009-02-27)
niossram\db\niossram.(0).cnf.hdb (906, 2009-02-27)
niossram\db\niossram.(1).cnf.cdb (17455, 2009-02-27)
niossram\db\niossram.(1).cnf.hdb (5578, 2009-02-27)
niossram\db\niossram.(10).cnf.cdb (1923, 2009-02-27)
niossram\db\niossram.(10).cnf.hdb (790, 2009-02-27)
... ...

/************************************************************************** * Copyright (c) 2004 Altera Corporation, San Jose, California, USA. * * All rights reserved. All use of this software and documentation is * * subject to the License Agreement located at the end of this file below.* *************************************************************************/ /****************************************************************************** * DANGER ** WARNING ** Please read before proceeding! ** WARNING ** DANGER * ****************************************************************************** * * This program is an example of a "free-standing" C application. If you * modify this example and try to call C library functions such as printf, they * will NOT work unless you explicitly initialize the system, such as in the * hello_alt_main software template. Please see below for details. * * Description * ************* * A very minimal program that simply shifts an LED back and forth. * * Requirements * ************** * According to the ANSI C standard, freestanding programs "own" the hardware, * and cannot rely on system-services or device-drivers being initialized prior * to program-start. A freestanding program is responsible for initializing all * hardware devices, device-drivers, and system-services. Many embedded * programs are, by nature, freestanding. The author relinquishes any illusion * of running their program on a workstation. * * This example is a freestanding program because it's entry point is the * function: * * void alt_main (void) * * As opposed to "main()" as a "hosted" application would (see the * "hello_world" example). * * Upon entry to alt_main(): * - The CPU's caches (if any) have been initialized. * - The stack-pointer has been set. * - That's all. The rest is up to you. * * If you modify this example and try to call C library functions such as * printf, they will NOT work unless you explicitly initialize the system. * If you wish to use C library calls, it is strongly suggested you start * with the hosted hello_world template which uses main() as it's entry * point. * * On the other hand, if you want to write a program that gets-in even * earlier, you will need to provide your own assembly-language machine-setup * code by defining the symbol "_start". Any definition of _start in your * directory will override the library definition. You can find source code * for the Nios II library _start here: * * /components/altera_nios2/HAL/src/crt0.S * * This software example requires a system with a PIO peripheral named * "led_pio". The software example will run on the following hardware * examples: * * Nios Development Board, Stratix II Edition: * - Standard * - Small * - Full Featured * * DSP Development Board, Stratix II Edition: * - Standard * - Small * - Full Featured * * Nios Development Board, Stratix Edition: * - Standard * - Small * - Full Featured * * Nios Development Board, Stratix Professional Edition: * - Standard * - Small * - Full Featured * * Nios Development Board, Cyclone Edition: * - Standard * - Small * - Low Cost * - Full Featured * * Peripherals Exercised by SW * ***************************** * The hello_led.c program simply shifts an 8-bit variable back and forth, * writing the variable's value to the system's LED PIO peripheral on every * iteration. * * Software Files * **************** * hello_led.c - Main C file that contains the simple led manipulation routine. * */

近期下载者

相关文件


收藏者