nuttx/configs/stm3210e-eval/RIDE/bigfatstub.c
patacongo 49a9950814 Remove executable property from source and make files
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5146 42af7a65-404d-4744-a932-0658087f49c3
2012-09-13 18:46:10 +00:00

31 lines
481 B
C

#include <stdint.h>
#include <nuttx/irq.h>
#include "up_internal.h"
void os_start(void)
{
up_lowputc('X');
up_lowputc('\n');
for (;;);
}
void up_assert_code(const uint8_t *filename, int lineno, int errorcode)
{
up_lowputc('?');
up_lowputc('\n');
for (;;);
}
int irq_attach(int irq, xcpt_t isr)
{
up_lowputc('A');
up_lowputc('\n');
for (;;);
}
uint32_t *up_doirq(int irq, uint32_t *regs)
{
up_lowputc('I');
up_lowputc('\n');
for (;;);
}