index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Merge pull request #22 from bunnei/loader-improvements
bunnei
2014-06-25
19
-924
/
+1202
|
\
|
*
Loader: Refactored loading functions to only read data from binary if called.
bunnei
2014-06-24
3
-74
/
+141
|
*
MemMap: Added a WriteBlock function to write a buffer of data to memory.
bunnei
2014-06-24
2
-0
/
+14
|
*
ELF: Refactored LoadInto(..) to use memcpy, removed unnecessary code.
bunnei
2014-06-24
1
-19
/
+8
|
*
Loader: Refactored use of const.
bunnei
2014-06-24
6
-20
/
+19
|
*
NCCH: Added RomFS loading.
bunnei
2014-06-24
2
-1
/
+36
|
*
NCCH: Fixes reduce unnecessary logging and load logo/banner/etc. sections cor...
bunnei
2014-06-24
3
-22
/
+29
|
*
Loader: Implemented AppLoader interface for abstracting application loading.
bunnei
2014-06-24
8
-543
/
+682
|
*
NCCH: Changed decompression to load .code directly into memory rather than an...
bunnei
2014-06-17
1
-9
/
+3
|
*
Elf: Removed unused macros, changed #include of "common.h" to just "common_ty...
bunnei
2014-06-17
1
-117
/
+1
|
*
Loader: Cleaned up and removed unused code, refactored ELF namespace.
bunnei
2014-06-16
4
-209
/
+70
|
*
Elf: Renamed modules to be consistent with new loader naming, fixed tabs -> s...
bunnei
2014-06-16
8
-372
/
+342
|
*
Loader: Added support for booting NCCH executables.
bunnei
2014-06-16
6
-0
/
+384
|
*
Loader: Moved elf and loader modules to a "loader" subdirectory.
bunnei
2014-06-16
11
-33
/
+38
|
*
Loader: Added stubbed detection of CXI and CCI files.
bunnei
2014-06-16
1
-0
/
+6
|
*
Loader: Removed unused CXI and DAT loading code.
bunnei
2014-06-16
1
-76
/
+0
*
|
citra_qt: Removed autogenerated files from repo and fixed build issues.
bunnei
2014-06-22
11
-710
/
+5
|
/
*
Merge branch 'threading' of https://github.com/bunnei/citra
bunnei
2014-06-14
41
-1199
/
+1243
|
\
|
*
Kernel: Removed unnecessary "#pragma once".
bunnei
2014-06-13
1
-2
/
+0
|
*
Kernel: Added freeing of kernel objects on emulator shutdown.
bunnei
2014-06-13
3
-0
/
+13
|
*
Event: Updated several log messages to be assertions.
bunnei
2014-06-13
1
-16
/
+8
|
*
HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only m...
bunnei
2014-06-13
2
-5
/
+6
|
*
SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.
bunnei
2014-06-13
2
-157
/
+145
|
*
Thread: Renamed occurrences of "t" to "thread" to improve readability.
bunnei
2014-06-13
1
-48
/
+45
|
*
Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...
bunnei
2014-06-13
1
-9
/
+7
|
*
HLE: Removed usnused EatCycles function.
bunnei
2014-06-13
3
-15
/
+0
|
*
SVC: Cleaned up function wrappers to pass in correct argument types.
bunnei
2014-06-13
2
-870
/
+201
|
*
Thread: Moved position of * in arguments.
bunnei
2014-06-13
1
-2
/
+2
|
*
Thread: Updated VerifyWait to be more readable (but functionally the same).
bunnei
2014-06-13
1
-4
/
+3
|
*
SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea...
bunnei
2014-06-13
1
-1
/
+1
|
*
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
bunnei
2014-06-13
13
-239
/
+239
|
*
Kernel: Updated various kernel function "name" arguments to be const references.
bunnei
2014-06-13
4
-6
/
+6
|
*
HLE: Updated various handle debug assertions to be more clear.
bunnei
2014-06-13
4
-10
/
+10
|
*
Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.
bunnei
2014-06-13
1
-2
/
+1
|
*
Kernel: Updated several member functions to be const
bunnei
2014-06-13
5
-13
/
+13
|
*
Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ins...
bunnei
2014-06-13
2
-12
/
+14
|
*
Core: Changed HW update/thread reschedule to occur more frequently (assume ea...
bunnei
2014-06-13
1
-2
/
+2
|
*
Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...
bunnei
2014-06-13
1
-1
/
+1
|
*
Kernel: Made SyncRequest not pure virtual, with a default implementation of e...
bunnei
2014-06-13
3
-23
/
+4
|
*
Kernel: Added real support for thread and event blocking
bunnei
2014-06-13
6
-76
/
+196
|
*
qt: updated disassembler to show 2X as many instructions
bunnei
2014-06-05
1
-1
/
+1
|
*
hle: added a hokey way to force a thread reschedule during CPU single step mo...
bunnei
2014-06-05
3
-1
/
+7
|
*
arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually exec...
bunnei
2014-06-05
1
-1
/
+1
|
*
kernel: changed current default thread priority back to 0x30 - I think this i...
bunnei
2014-06-05
1
-1
/
+1
|
*
arm: fixed bug in how thread context switch occurs with SkyEye
bunnei
2014-06-05
2
-2
/
+9
|
*
service: added a error log messages for unimplemented WaitSynchronization
bunnei
2014-06-04
1
-0
/
+1
|
*
arm: reverting a change made with cb0663de - this has to have been a typo!
bunnei
2014-06-04
1
-1
/
+1
|
*
svc: added optional name field to Event and Mutex (used for debugging)
bunnei
2014-06-02
6
-12
/
+25
|
*
kernel: moved position of * for GetTypeName and GetName
bunnei
2014-06-02
1
-2
/
+2
|
*
coprocessor: reenabled debug log
bunnei
2014-06-02
1
-1
/
+1
[next]