I am attempting to convert a C project into C++.
In the C project I countered this error while compiling into c++:
Error[Pe513]: a value of type "void *" cannot be assigned to an entity of type "uint8_t *"
The following code gives this error:
#define RAM32Boundary 0x20007D00
uint8_t *pNextRam;
pNextRam = (void*)RAM32Boundary;// load up the base ram
Can anyone explain what this is doing in C and how to convert it into C++?