add module support for cortex-m3 feature

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1731 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
qiuyiuestc@gmail.com
2011-09-28 02:10:43 +00:00
parent 9bb329daee
commit 96049b7e5c
65 changed files with 797 additions and 3547 deletions
+8 -4
View File
@@ -1,18 +1,22 @@
#include <rtthread.h>
int a = 0;
int b = 1000000;
int c = 0;
static int a = 0;
static int b = 1000000;
int c = 100;
static void function(int count1, int count2, int count3)
{
rt_kprintf("Hello RT-Thread %d %d\n", count1, count2, count3);
}
int rt_application_init(void)
int main(void)
{
int i;
rt_kprintf("application entry\n");
rt_kprintf("[addr]a-0x%x,b-0x%x,c-0x%x\n", &a, &b, &c);
rt_kprintf("[value]a-%d,b-%d,c-%d\n", a, b, c);
for(i=0; i<100; i++)
{
a++;