能不能帮忙看看NIOS ii 9.1在编译程序时的这个错误?

2019-03-25 08:48发布

在Build project 时总是提示这个错误
/cygdrive/e/altera/nios2eds/components/altera_hal/HAL/src/alt_main.c undefined reference to `main'

能帮忙看看程序哪里错了吗?
#include "system.h"
#include "altera_avalon_pio_regs.h"
#include "alt_types.h"

int main (void) __attribute__ ((weak, alias ("alt_main")));
int alt_main (void)
{
  int led = 0;
  int i;


  while (1)
  {
      led = 1-led;
      IOWR_ALTERA_AVALON_PIO_DATA(LED_BASE, 1-led);
      for(i = 0;i<1000000;i++);     
  }
  return 0;
} 此帖出自小平头技术问答
0条回答

一周热门 更多>