小弟在quartusII中建立了工程,然后在nios中写了一个很基本的程序,程序如下: #include <stdio.h> #include <altera_avalon_pio_regs.h> int main() { IOWR(0x00003800, 0, 1); IOWR(0x00003810, 0, 1); IOWR(0x00003820, 0, 1); IOWR(0x00003830, 0, 0); IOWR(0x00003840, 0, 0); IOWR(0x00003850, 0, 0); /*printf("Hello from Nios II!\n");*/ return 0; } 可是在编译的时候总是出现"onchip memory is full" 不知道问题出在哪儿,大侠们不要笑话啊,指点下小弟,谢了! |