Lioncash
c94c41f95a
arm: Get rid of some magic constants. Specify proper ARM mode.
...
Initially, we were starting the emulator in USER26MODE, which is incorrect, this should be USER32MODE.
10 years ago
Lioncash
93cd199633
arm: Change some more constants into enums
10 years ago
Tony Wasserka
12a5cd1d65
citra-qt: Add a vertex shader debugger.
10 years ago
Tony Wasserka
3f649dc9b8
Pica/DebugUtils: Factor out BreakPointObserverDock into its own file.
10 years ago
bunnei
2fb1e4c9a2
Merge pull request #500 from archshift/assert
...
Made asserts actually break the debugger, or crash if the program is not in debug mode.
10 years ago
archshift
ef24e72b26
Asserts: break/crash program, fit to style guide; log.h->assert.h
...
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time)
As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing)
Also removed some GEKKO cruft.
10 years ago
bunnei
168eb27aee
GSP: Fixed typo in SignalInterrupt
10 years ago
bunnei
76e7d41f88
Merge pull request #552 from bunnei/setbufferswap-fix
...
GSP SetBufferSwap fix
10 years ago
bunnei
9eae2400c0
GSP: Call SetBufferSwap for each screen on corresponding signal interrupt.
10 years ago
bunnei
ca22ee3239
Merge pull request #526 from purpasmart96/citra_stubs
...
Services: Stub some functions
10 years ago
bunnei
5b735bdeea
Merge pull request #556 from lioncash/clean
...
arm: Remove TRUE/FALSE defines
10 years ago
bunnei
8f35772bd7
Merge pull request #555 from lioncash/lut
...
arm_dyncom_thumb: Make lookup tables static
10 years ago
bunnei
27e6e6b3cb
Merge pull request #540 from yuriks/multi-archives
...
FS: Allow multiple instances of the same archive type to be open at once
10 years ago
Lioncash
088fab743f
arm: Remove TRUE/FALSE defines
...
- Removed the Debug parameter from ARMul_State since it isn't used.
- Changed ARMul_CoProInit to a void function. It always returned true.
10 years ago
Subv
0d2b6dd656
PTM: Fixed a problem with the gamecoin PTM file.
10 years ago
Subv
1bbf0567b1
Archives: Made the Format function more generic.
10 years ago
Subv
071663e074
Archives: Expose the File and Directory classes to HLE
10 years ago
Subv
ca1a87ef7d
ResultVal: Fixed compilation when reassigning a ResultVal.
10 years ago
Yuri Kunde Schlesner
3f1a3952d7
FS: Allow multiple instances of the same archive type to be open at once
10 years ago
Yuri Kunde Schlesner
4468625080
FS: Get rid of completely useless Archive class
10 years ago
Lioncash
8d2fb3bb2b
arm_dyncom_thumb: Make lookup tables static
...
These don't need to be recreated all the time.
10 years ago
bunnei
67db6aa4ce
Merge pull request #553 from lioncash/denorm
...
vfp: Normalize accumulator for multiply accumulate instructions
10 years ago
bunnei
695beb8dcf
Merge pull request #554 from lioncash/cp15
...
dyncom: Add more regs to MCR/MRC
10 years ago
Lioncash
3eccc66abf
dyncom: Add more regs to MCR/MRC
...
Adds the registers that were left out of some coprocessor ranges.
10 years ago
Lioncash
a86d5e2752
vfp: Normalize accumulator for multiply accumulate instructions
10 years ago
Tony Wasserka
eb83ac48aa
Merge pull request #543 from Alegend45/master
...
Add more blend equations from 3dbrew
10 years ago
bunnei
dab0b5cefb
Merge pull request #528 from kevinhartman/scheduling-logic
...
Scheduler refactor Pt. 1
10 years ago
Kevin Hartman
5fcbfc06eb
Scheduler refactor Pt. 1
...
* Simplifies scheduling logic, specifically regarding thread status. It should be much clearer which statuses are valid
for a thread at any given point in the system.
* Removes dead code from thread.cpp.
* Moves the implementation of resetting a ThreadContext to the corresponding core's implementation.
Other changes:
* Fixed comments in arm interfaces.
* Updated comments in thread.cpp
* Removed confusing, useless, functions like MakeReady() and ChangeStatus() from thread.cpp.
* Removed stack_size from Thread. In the CTR kernel, the thread's stack would be allocated before thread creation.
10 years ago
bunnei
848795f383
Merge pull request #551 from bunnei/mutex-fixes
...
Mutex/synch fixes
10 years ago
bunnei
1b0bf00cbc
Mutex: Locks should be recursive.
10 years ago
bunnei
caa58acc84
WaitSynch: Always reschedule (verified behavior on hw).
10 years ago
Darius Goad
536958fb29
Add more blend equations from 3dbrew
10 years ago
bunnei
837439e7d5
Merge pull request #550 from lioncash/ftoui
...
vfpdouble: Fix the FTOUI NaN sign setting
10 years ago
Lioncash
53fa04f326
vfpdouble: Fix the FTOUI NaN sign setting
...
This was fixed for vfpsingle, but not vfpdouble
10 years ago
bunnei
7dfdbe22de
Merge pull request #549 from lioncash/tossed
...
Throw more unused/unnecessary VFP code out
10 years ago
Lioncash
a734e9fdca
Throw more unused/unnecessary VFP code out
10 years ago
bunnei
7cc24562b4
Merge pull request #548 from lioncash/nits
...
Cleanup related to vfp_helper.
10 years ago
Lioncash
ca7babe062
vfp_helper: Convert some flags to enums. Throw out more duplicated FPSCR stuff
10 years ago
Lioncash
d832c48864
vfp_helper: Normalize tabs to spaces
10 years ago
Tony Wasserka
4154560bd5
Merge pull request #545 from yuriks/patch-1
...
Appveyor: Do x64 builds
10 years ago
Yuri Kunde Schlesner
6638bf3b9b
Appveyor: Adjust clone depth settings
...
The submodule update was doing a full clone. Also increase clone depth a
bit, since it can apparently cause issues checking out the source if
there are too many concurrent PRs trying to build (causing the commit
for the build to not be the top one on the repository anymore).
10 years ago
Yuri Kunde Schlesner
689d80e077
Appveyor: Do x64 builds
10 years ago
bunnei
126c8257b4
Merge pull request #542 from chinhodado/patch-1
...
Fix a wrong file name in a comment
10 years ago
purpasmart96
60ce36f721
Services: Stub some functions
10 years ago
chinhodado
34cce345a7
Fix a wrong file name in a comment
10 years ago
bunnei
c4e636681e
Merge pull request #541 from lioncash/nits
...
Small VFP cleanups.
10 years ago
Lioncash
1ecd75ea1a
vfp_helper: Remove unnecessary extern C blocks
10 years ago
Lioncash
3e576219c4
vfp: Move FPSID, FPEXC, and FPSCR values over to enums.
...
Also got rid of duplicate definitions of some of these values.
10 years ago
Tony Wasserka
1576a318f2
Merge pull request #535 from bunnei/color-modifiers
...
Implement color/alpha modifiers
10 years ago
bunnei
1eb591d6fd
Rasterizer: Implement the other color and alpha modifiers.
10 years ago