TI MSP CGT added

This commit is contained in:
Ilia Motornyi
2021-10-12 18:37:48 +03:00
parent f3e0a58d96
commit 45f06715d2
13 changed files with 368 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <iostream>
#pragma message ("Compile C++")
extern "C" void c_main(void);
int main() {
std::cout << "Hello, World, from C++!" << std::endl;
c_main();
return 0;
}