c/c++ developer
https://github.com/PengShiqiu

导航

 

2016年12月11日

摘要: 转自:http://blog.sina.com.cn/s/blog_6abf2c04010189ui.html DM9000可以直接与ISA总线相连,也可以与大多数CPU直接相连。Mini2440采用的是dm9000直接连接CPU(s3c2440)上。就像是nandflash一样直接被挂在CUP上, 阅读全文
posted @ 2016-12-11 18:36 Pengshiqiu 阅读(232) 评论(0) 推荐(0) 编辑
 
摘要: #include #include #include #include //定义表示学生信息结点的结构体 typedef struct _student { char name[20]; float score; //定义指向链表中下一个结点的指针 struct _student* next; }student; void printlist... 阅读全文
posted @ 2016-12-11 13:58 Pengshiqiu 阅读(9174) 评论(0) 推荐(0) 编辑