inspuration
537c04ac14
Another attempted fix
2014-06-11 00:49:39 -04:00
inspuration
5becefcfd4
Fixed std::find error
2014-06-11 00:44:33 -04:00
inspuration
264335b627
Style tweaks
2014-06-11 00:37:55 -04:00
inspuration
c180fd4003
Fixed minor bug in sharedmem writing
2014-06-11 00:12:54 -04:00
inspuration
5f6fa13af6
Implemented SharedMemory Objects
2014-06-10 21:44:03 -04:00
inspuration
f18ae9892a
Finished fixing bugs caused by the merge
2014-06-10 16:29:52 -04:00
inspuration
1d6ea166c1
Merge branch 'master' into threading
...
Conflicts:
src/core/core.vcxproj.filters
src/core/hle/function_wrappers.h
src/core/hle/service/gsp.cpp
src/core/hle/service/hid.cpp
src/core/hle/svc.cpp
2014-06-10 15:17:04 -04:00
inspuration
df6e6a4f60
Merge branch 'threading' of https://github.com/bunnei/citra into threading
...
Conflicts:
src/core/hle/function_wrappers.h
2014-06-10 15:10:43 -04:00
inspuration
ad6a99524c
Merge remote-tracking branch 'bunnei/master'
2014-06-10 14:59:44 -04:00
bunnei
11d94ea2b3
Common: Removed definition of MAX_PATH, this is already defined in common_paths.h.
2014-06-09 22:54:59 -04:00
bunnei
60185a56fd
Event: Updated several log messages to be assertions.
2014-06-09 22:46:54 -04:00
bunnei
06fa90a262
HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only module where they are needed).
2014-06-09 22:40:52 -04:00
bunnei
c42e93aaca
SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.
2014-06-09 22:30:39 -04:00
inspuration
53d6c7a078
Updated gitignore
2014-06-09 22:14:11 -04:00
bunnei
2524c78394
Thread: Renamed occurrences of "t" to "thread" to improve readability.
2014-06-09 22:14:03 -04:00
bunnei
0940335242
Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessarily be logged.
2014-06-09 22:08:49 -04:00
inspuration
ff95b7ea24
updated gitignore
2014-06-09 16:29:22 -04:00
inspuration
fc191a3490
Fixed build errors and runtime errors in new gpu debugger menus.
2014-06-09 15:52:51 -04:00
inspuration
85e8edbdd9
Merge branch 'master' of https://github.com/citra-emu/citra
...
Conflicts:
src/core/CMakeLists.txt
2014-06-09 14:45:21 -04:00
inspuration
b7be03fd2c
Added preliminary support for shared memory objects and handles.
2014-06-09 14:42:01 -04:00
bunnei
95441df10d
HLE: Removed usnused EatCycles function.
2014-06-06 23:34:49 -04:00
bunnei
00b0b69b76
SVC: Cleaned up function wrappers to pass in correct argument types.
2014-06-06 23:31:29 -04:00
bunnei
c0fd909258
Thread: Moved position of * in arguments.
2014-06-06 20:05:16 -04:00
bunnei
b05ed89f4a
Thread: Updated VerifyWait to be more readable (but functionally the same).
2014-06-06 17:57:52 -04:00
bunnei
3f469e147f
SVC: Moved declaration of "wait" variable in SendSyncRequest for improved readability.
2014-06-06 00:44:44 -04:00
bunnei
f922bd14c1
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
2014-06-06 00:35:49 -04:00
bunnei
0fc4c88e7f
Kernel: Updated various kernel function "name" arguments to be const references.
2014-06-06 00:23:33 -04:00
bunnei
9b59fb0db8
HLE: Updated various handle debug assertions to be more clear.
2014-06-06 00:19:40 -04:00
bunnei
d97b143af9
Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.
2014-06-06 00:13:50 -04:00
bunnei
d472743ec6
Kernel: Updated several member functions to be const
2014-06-06 00:10:50 -04:00
bunnei
bac6ca233c
Core: Cleaned up SingleStep(), updated default LCD refresh to assume each instruction is ~3 cycles
2014-06-06 00:06:33 -04:00
bunnei
52735d5513
Core: Changed HW update/thread reschedule to occur more frequently (assume each instruction is ~3 cycles)
2014-06-05 23:32:02 -04:00
bunnei
b31f7293a6
Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrectly set
2014-06-05 23:19:55 -04:00
bunnei
6fd870e6bb
Kernel: Made SyncRequest not pure virtual, with a default implementation of error (as this is not required for all kernel objects)
2014-06-05 23:13:28 -04:00
bunnei
1c867b569d
Kernel: Added real support for thread and event blocking
...
- 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
2014-06-05 22:35:36 -04:00
bunnei
4a0430d5eb
Merge pull request #1 from neobrain/master
...
Cleanup GPU headers and add a GPU debugger with command list parsing capability.
2014-06-05 10:15:41 -04:00
bunnei
a002abf171
qt: updated disassembler to show 2X as many instructions
2014-06-05 01:08:54 -04:00
bunnei
174cc9a0ed
hle: added a hokey way to force a thread reschedule during CPU single step mode (as used by the debugger)
2014-06-05 00:26:48 -04:00
bunnei
6cdad8390c
arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually executing one more instruction than expected
2014-06-05 00:25:32 -04:00
bunnei
ce1c561278
kernel: changed current default thread priority back to 0x30 - I think this is more correct
2014-06-05 00:20:58 -04:00
bunnei
9ece9da50d
arm: fixed bug in how thread context switch occurs with SkyEye
2014-06-05 00:20:11 -04:00
bunnei
870c6146e7
service: added a error log messages for unimplemented WaitSynchronization
2014-06-04 18:50:50 -04:00
bunnei
c330a0a1d6
arm: reverting a change made with cb0663de
- this has to have been a typo!
2014-06-04 18:41:44 -04:00
Tony Wasserka
d8148eaa6b
Pica: Use some template magic to define register structures efficiently.
2014-06-04 23:42:52 +02:00
Tony Wasserka
2cf87fb10a
Further refine GPU command list debugging.
2014-06-04 23:42:52 +02:00
Tony Wasserka
8f1c998472
Refine command list debugging functionality and its qt interface.
2014-06-04 23:42:52 +02:00
Tony Wasserka
9fbfd928a1
citra-qt: Add command list view.
2014-06-04 23:42:51 +02:00
Tony Wasserka
90fd4e111c
GPU debugger: Add functionality to inspect command lists.
2014-06-04 23:42:51 +02:00
Tony Wasserka
930a4a3f9e
video core: added PICA definitions file.
2014-06-04 23:42:51 +02:00
Tony Wasserka
3240b6ef31
GPU: Cleanup register definitions.
2014-06-04 23:42:51 +02:00