bugfix, print not allowed in constructor (#22)

This commit is contained in:
Bernator
2019-07-23 19:19:21 +02:00
committed by thelsing
parent 13b1cff315
commit 0a8c231627

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);
}