//by www.liuhelu.cn
#include <stdio.h>
#include <stdlib.h>
#include "system.h"
void hello_word(void);
int main()
{
printf("Hello from Nios II!\n");
hello_word();
return 0;
}
void hello_word(void){
FILE *pHello;
char szhello_word[]="Hello Word!^..^\nWelcome DE2-70!\n";
pHello=fopen(LCD_0_NAME,"w");
if(pHello){
fwrite(szhello_word,strlen(szhello_word),1,pHello);
}else{
printf("failed to open LCD\n");
}
}
文章评论(0条评论)
登录后参与讨论