mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-15 22:08:47 +00:00
14 lines
253 B
C
14 lines
253 B
C
#include "Test.h"
|
|
|
|
char readWriteData[6] = "Three";
|
|
|
|
int main()
|
|
{
|
|
// constant initialized data
|
|
TEST_LOG_SIZED("One",3);
|
|
TEST_LOG_SIZED("Two",3);
|
|
// read-write initialized data
|
|
TEST_LOG_SIZED(readWriteData,5);
|
|
return 0;
|
|
}
|