bugfix, print not allowed in constructor

This commit is contained in:
Bernator
2019-07-23 18:49:28 +02:00
committed by GitHub
parent a7f237f391
commit 6ad30cc0dd

View File

@@ -35,6 +35,4 @@ Platform::Platform()
_memoryReference = (uint8_t*)malloc(1);
free(_memoryReference);
_memoryReference -= 1024;
print("MemRef: ");
println((long unsigned int)_memoryReference, HEX);
}