13 lines
161 B
C
13 lines
161 B
C
#include "layer2.h"
|
|
|
|
void main()
|
|
{
|
|
printf("Hello World!\n");
|
|
// call a function in another file
|
|
ROMprotocol();
|
|
|
|
printf("Successful exit\n");
|
|
|
|
return;
|
|
}
|