name audio.c, board/audio.c, board/basic_space, match files (#571)
* name audio.c and board/audio.c * fix audio, complete board/basic_space, battle * revert changes that broke build * completely finish New and NewMore.cp, for some reason NewMore fails checksum * finally match NewMore.cp
This commit is contained in:
parent
4ee46b3396
commit
eb11f9c23f
7 changed files with 42 additions and 22 deletions
8
src/Runtime.PPCEABI.H/New.cp
Normal file
8
src/Runtime.PPCEABI.H/New.cp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include "PowerPC_EABI_Support/Msl/MSL_C/MSL_Common/alloc.h"
|
||||
#include "PowerPC_EABI_Support/Runtime/New.h"
|
||||
|
||||
void operator delete(void* arg0) throw() {
|
||||
if (arg0 != 0) {
|
||||
free(arg0);
|
||||
}
|
||||
}
|
||||
15
src/Runtime.PPCEABI.H/NewMore.cp
Normal file
15
src/Runtime.PPCEABI.H/NewMore.cp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include "PowerPC_EABI_Support/Runtime/New.h"
|
||||
|
||||
namespace std {
|
||||
class exception {
|
||||
public:
|
||||
virtual ~exception();
|
||||
virtual const char *what() const;
|
||||
};
|
||||
}
|
||||
|
||||
const char *std::exception::what() const {
|
||||
return "exception";
|
||||
};
|
||||
|
||||
std::exception::~exception() {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue