Age | Commit message (Collapse) | Author |
|
This tries to make our code a bit more compliant with our code formatting
conventions. For future use, this is the command I used:
git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//'
|
|
|
|
memory manager
uint32 is all we need since we only handle ELF32 anyway.
svn-id: r55012
|
|
loader is enabled.
This should fix compilation on desktop systems, where for example memalign
is not present.
svn-id: r55011
|
|
svn-id: r55010
|
|
Following lordhoto's suggestion, I implemented a simple allocator that grabs the size of the biggest available plugin in memory. This is an elegant solution to the fragmentation problem, with the caveat that memory is wasted. As such, it's not suited for the DS, so I added a #define to disable it there.
svn-id: r55009
|