c08842966039001e1b30e3afff2bbc4e

来自「nios ii在DE2上实现LCD动态显示」· 代码 · 共 41 行

TXT
41
字号
/*
 * "Hello World" example.
 *
 * This example prints 'Hello from Nios II' to the STDOUT stream. It runs on
 * the Nios II 'standard', 'full_featured', 'fast', and 'low_cost' example
 * designs. It runs with or without the MicroC/OS-II RTOS and requires a STDOUT
 * device in your system's hardware.
 * The memory footprint of this hosted application is ~69 kbytes by default
 * using the standard reference design.
 *
 * For a reduced footprint version of this template, and an explanation of how
 * to reduce the memory footprint for a given application, see the
 * "small_hello_world" template.
 *
 */


/*
int main()
{
  printf("Hello from Nios II!\n");
  seg7_show(SEG7_DISPLAY_BASE, i);
  return 0;
}*/


#include <stdio.h>
#include "system.h"
#include "basic_io.h"


int main() 
{
  int i;
  for(i = 0; i != 100; i++)  {
    Sleep(1);
    printf("A=%d",i);
    
    
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?