1234567891011121314151617181920 |
- #include "fw.h"
- #include "io.h"
- #include "abcio.h"
- #include "sys.h"
- #include "console.h"
- volatile bool dont_gc; /* Keep things from linker gc */
- void main(void)
- {
- init();
- if (dont_gc)
- run_test_image();
- while (1) {
- wait_for_irq();
- abcdisk_io_poll();
- }
- }
|