aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* citra-qt: Rewrite disassembly view.Gravatar Tony Wasserka2014-07-02
|
* Merge pull request #22 from bunnei/loader-improvementsGravatar bunnei2014-06-25
|\ | | | | Refactor loader code and add preliminary NCCH support
| * Loader: Refactored loading functions to only read data from binary if called.Gravatar bunnei2014-06-24
| | | | | | | | NCCH: Updated LoadExec to use Memory::WriteBlock function to load binary code.
| * MemMap: Added a WriteBlock function to write a buffer of data to memory.Gravatar bunnei2014-06-24
| |
| * ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code.Gravatar bunnei2014-06-24
| |
| * Loader: Refactored use of const.Gravatar bunnei2014-06-24
| |
| * NCCH: Added RomFS loading.Gravatar bunnei2014-06-24
| |
| * NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections ↵Gravatar bunnei2014-06-24
| | | | | | | | | | | | correctly. Loader: Added ErrorNotUsed ReturnStatus type to specify when something is not used.
| * Loader: Implemented AppLoader interface for abstracting application loading.Gravatar bunnei2014-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr.
* | Merge pull request #7 from archshift/travis-osxGravatar bunnei2014-06-24
|\ \ | | | | | | Adds OSX building on Travis-CI
* \ \ Merge pull request #24 from bunnei/remove-autogenerated-filesGravatar bunnei2014-06-22
|\ \ \ | | | | | | | | citra_qt: Removed autogenerated files from repo and fixed build issues.
| * | | citra_qt: Removed autogenerated files from repo and fixed build issues.Gravatar bunnei2014-06-22
|/ / /
| * | Travis: Added OSX, use default compilers, moved cmds into own scriptsGravatar archshift2014-06-17
| | |
| | * NCCH: Changed decompression to load .code directly into memory rather than ↵Gravatar bunnei2014-06-17
| | | | | | | | | | | | an intermediate buffer.
| | * Elf: Removed unused macros, changed #include of "common.h" to just ↵Gravatar bunnei2014-06-17
| | | | | | | | | | | | "common_types.h".
| | * Loader: Cleaned up and removed unused code, refactored ELF namespace.Gravatar bunnei2014-06-16
| | |
| | * Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> ↵Gravatar bunnei2014-06-16
| | | | | | | | | | | | spaces.
| | * Loader: Added support for booting NCCH executables.Gravatar bunnei2014-06-16
| | | | | | | | | | | | NCCH: Fixed typo in printing NCCH filename.
| | * Loader: Moved elf and loader modules to a "loader" subdirectory.Gravatar bunnei2014-06-16
| | |
| | * Loader: Added stubbed detection of CXI and CCI files.Gravatar bunnei2014-06-16
| | |
| | * Loader: Removed unused CXI and DAT loading code.Gravatar bunnei2014-06-16
| |/ |/|
* | Merge branch 'threading' of https://github.com/bunnei/citraGravatar bunnei2014-06-14
|\ \ | | | | | | | | | | | | | | | Conflicts: src/core/hle/function_wrappers.h src/core/hle/service/gsp.cpp
| * | Kernel: Removed unnecessary "#pragma once".Gravatar bunnei2014-06-13
| | |
| * | Kernel: Added freeing of kernel objects on emulator shutdown.Gravatar bunnei2014-06-13
| | |
| * | Event: Updated several log messages to be assertions.Gravatar bunnei2014-06-13
| | |
| * | HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | module where they are needed).
| * | SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-13
| | |
| * | Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-13
| | |
| * | Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | unnecessarily be logged.
| * | HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-13
| | |
| * | SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-13
| | |
| * | Thread: Moved position of * in arguments.Gravatar bunnei2014-06-13
| | |
| * | Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-13
| | |
| * | SVC: Moved declaration of "wait" variable in SendSyncRequest for improved ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | readability.
| * | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
| | |
| * | Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-13
| | |
| * | HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-13
| | |
| * | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-13
| | |
| * | Kernel: Updated several member functions to be constGravatar bunnei2014-06-13
| | |
| * | Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | instruction is ~3 cycles
| * | Core: Changed HW update/thread reschedule to occur more frequently (assume ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | each instruction is ~3 cycles)
| * | Thread: Fixed bug with ResetThread where cpu_registers[15] was being ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | incorrectly set
| * | Kernel: Made SyncRequest not pure virtual, with a default implementation of ↵Gravatar bunnei2014-06-13
| | | | | | | | | | | | error (as this is not required for all kernel objects)
| * | Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - SVC: Added ExitThread support - SVC: Added SignalEvent support - Thread: Added WAITTYPE_EVENT for waiting threads for event signals - Thread: Added support for blocking on other threads to finish (e.g. Thread::Join) - Thread: Added debug function for printing current threads ready for execution - Thread: Removed hack/broken thread ready state code from Kernel::Reschedule - Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization - Event: Added support for blocking threads on event signalling Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.
* | | GPU debugger: Const correctness and build fix.Gravatar Tony Wasserka2014-06-12
| | |
* | | Removed definition of MAX_PATH, this is already defined in common_paths.h.Gravatar bunnei2014-06-12
| | |
* | | Preprocessor: #if's out OSX-specific GL changes on other platformsGravatar archshift2014-06-12
| | |
* | | Common: Removed duplicate "LONG" and "MAX_PATH" definitions.Gravatar bunnei2014-06-12
| | |
* | | Pica: Use some template magic to define register structures efficiently.Gravatar Tony Wasserka2014-06-12
| | |
* | | Further refine GPU command list debugging.Gravatar Tony Wasserka2014-06-12
| | |