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:
CreateSource 2025-03-15 08:36:13 -04:00 committed by GitHub
parent 4ee46b3396
commit eb11f9c23f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 42 additions and 22 deletions

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

View 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() {};