This creates a 8051 build that can run in 24Kb of RAM

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@26 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2007-03-01 21:05:55 +00:00
parent fb61b0b76b
commit bcd6ba97bd
52 changed files with 278 additions and 156 deletions
+3 -3
View File
@@ -61,11 +61,11 @@ static ssize_t devnull_write(struct file *, const char *, size_t);
static struct file_operations devnull_fops =
{
NULL, /* open */
NULL, /* close */
0, /* open */
0, /* close */
devnull_read, /* read */
devnull_write, /* write */
NULL /* ioctl */
0 /* ioctl */
};
/************************************************************