Add mt-helloworld example

This commit is contained in:
Jerry Zhao
2023-04-06 17:36:13 -07:00
parent 8a7c98c427
commit 54a6288f1a
5 changed files with 72 additions and 2 deletions

17
tests/marchid.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef MARCHID_H
#define MARCHID_H
const char* get_march(size_t marchid) {
switch (marchid) {
case 1:
return "rocket";
case 2:
return "sonicboom";
case 5:
return "spike";
default:
return "unknown";
}
}
#endif