14 lines
197 B
C
14 lines
197 B
C
#include <stdint.h>
|
|
|
|
#include "ece391support.h"
|
|
#include "ece391syscall.h"
|
|
|
|
int main ()
|
|
{
|
|
|
|
ece391_fdputs (1, (uint8_t*)"Hello, if this ran, the program was correct. Yay!\n");
|
|
|
|
return 0;
|
|
}
|
|
|