Commit Graph

2356 Commits (6278937a289fee07102e6d3474074d723372f2d5)
 

Author SHA1 Message Date
Lioncash dc7ac751f2 dyncom: Stub MCRR and MRRC
There's no other coprocessor outside the VFP (which has its own VMOV variants) in which the MPCore can send/retrieve data from.
Stubbed so citra won't crash and burn on the odd chance someone actually tries to use these.
10 years ago
archshift a08bb13e8b Merge pull request #754 from purpasmart96/nwm_typo_fix
NWM_UDS: Fix a typo in the nwm service port name
10 years ago
purpasmart96 046044618d NWM_UDS: Fix a typo in the nwm service port name 10 years ago
Lioncash ffc51161f3 vfp: Handle flush-to-zero mode. 10 years ago
bunnei 10eb8b0c02 Merge pull request #749 from yuriks/stack-top
Thread: Correctly set main thread initial stack position
10 years ago
Subv 41f74a16fd Core/HLE: Implemented the SVCs GetProcessId and GetProcessIdOfThread 10 years ago
Tony Wasserka 244ba1a610 Merge pull request #742 from archshift/i4
Implement I4 texture format
10 years ago
Yuri Kunde Schlesner d16c2bd956 Thread: Correctly set main thread initial stack position 10 years ago
archshift 40310e2132 Implement I4 texture format
@neobrain, could you confirm that this is correct?

It's been tested with various different games and fixes different textures, including in Animal Crossing, Kirby Triple Deluxe, and SMB3D.
10 years ago
archshift e98fbadf4a Merge pull request #740 from yuriks/gsp-shmem
Fix crashes due to un-initialized GSP shared memory
10 years ago
Lioncash 2a19de1d09 Merge pull request #741 from Subv/tls
Give each emulated thread it's own TLS memory
10 years ago
Subv 115ad8e16a fixup! Set the TLS address in the scheduler 10 years ago
Subv 000876858d Core/Memory: Give every emulated thread it's own TLS area.
The TLS area for thread T with id Ti is located at TLS_AREA_VADDR + (Ti - 1) * 0x200.
This allows some games like Mario Kart 7 to continue further.
10 years ago
Yuri Kunde Schlesner fd85367621 fixup! GSP: Small tweaks to shared memory initialization 10 years ago
Yuri Kunde Schlesner 1538a34eda GSP: Small tweaks to shared memory initialization 10 years ago
Yuri Kunde Schlesner 774eea8374 Kernel: Zero-fill shared memory blocks when mapping
This works around crashes related to GSP/HID/etc. shared memory blocks
having garbage values. The proper fix requires proper management of
mapped memory blocks in the process.
10 years ago
Yuri Kunde Schlesner c96f22490a Kernel: Capture SharedMemory attributes at creation, not when mapping 10 years ago
bunnei ba0bfe7d82 Merge pull request #726 from bunnei/gpu-improvements
GPU improvements
10 years ago
bunnei 23e8be573e rasterizer: Implemented combiner output scaling. 10 years ago
bunnei ff767eeb40 rasterizer: Implemented AddSigned combiner op. 10 years ago
bunnei 547da374b8 rasterizer: Fixed a depth testing bug. 10 years ago
bunnei a806b420a6 rasterizer: Implement combiner buffer input. 10 years ago
bunnei 44927f0306 rasterizer: Return zero'd vectors on error conditions. 10 years ago
bunnei 692a74c09e vertex_shader: Implement FLR instruction. 10 years ago
bunnei f935130a0f vertex_shader: Implement MADI instruction.
nihstro: Update submodule to latest upstream/master to support MADI instruction decoding.
10 years ago
Lioncash 088f6ae2c6 Merge pull request #736 from yuriks/remove-BIT
Common: Remove the BIT macro
10 years ago
Yuri Kunde Schlesner b700b55696 Common: Remove the BIT macro
When the macro was introduced in 326ec51261
it wasn't noticed that it conflicted in name with a heavily used macro
inside of dyncom. This causes some compiler warnings. Since it's only
lightly used, it was opted to simply remove the new macro.
10 years ago
Tony Wasserka e35e72d0a5 Merge pull request #734 from yuriks/memmap
Small memory map definitions cleanup
10 years ago
Yuri Kunde Schlesner 417c867e14 Loader: Add missing include 10 years ago
Yuri Kunde Schlesner 17a8cae003 Memory: Add GetPhysicalPointer helper function 10 years ago
Yuri Kunde Schlesner 28a9e4c1d5 Memory: Support more regions in the VAddr-PAddr translation functions
Also adds better documentation and removes the one-off reimplementation
of the function in pica.h.
10 years ago
Yuri Kunde Schlesner e7b6ed7578 Memory: Sort memory region variables by VAddr 10 years ago
Yuri Kunde Schlesner 1c0b87edc2 Memory: Re-organize and rename memory area address constants 10 years ago
Lioncash cb92817fb0 Merge pull request #733 from yuriks/remove-bin
Loader: Remove .bin file support
10 years ago
Yuri Kunde Schlesner eb3eb9f75d Loader: Remove .bin file support
It is of very limited practical utility currently, and will soon be
impossible to support due to more accurate memory map emulation.
10 years ago
bunnei 917ac23dfc Merge pull request #731 from yuriks/app-info
Kernel: Process class and ExHeader caps parsing
10 years ago
Yuri Kunde Schlesner 7c50b999fa Kernel: Remove unused g_main_thread variable 10 years ago
Yuri Kunde Schlesner 3cb19c9589 Process: Rename StaticAddressMapping => AddressMapping 10 years ago
Yuri Kunde Schlesner 83ccf85bb2 Process: Add more documentation to the class members 10 years ago
Yuri Kunde Schlesner 2f5904611d Process: Use BitField to store process flags 10 years ago
Yuri Kunde Schlesner 7eb413155f Loader/NCCH: Fix formatting of braces 10 years ago
Yuri Kunde Schlesner 2af30d465f Process: Support parsing of exheader kernel caps 10 years ago
Yuri Kunde Schlesner 326ec51261 Common: Add BIT macro 10 years ago
Yuri Kunde Schlesner a5eba2f984 Kernel: Remove g_program_id
This has been obsoleted by the field in Process.
10 years ago
Yuri Kunde Schlesner 6d60acf0f1 Kernel: Introduce skeleton Process class to hold process data 10 years ago
Yuri Kunde Schlesner 8809d02db3 Common: Add StringFromFixedZeroTerminatedBuffer 10 years ago
Yuri Kunde Schlesner 0f39cc359b Core: Fix sorting in CMakeFiles.txt 10 years ago
Lioncash 1622068198 Merge pull request #728 from lioncash/vars
dyncom: Remove an unnecessary variable in the interpreter
10 years ago
Lioncash 3effb80f26 Merge pull request #729 from lioncash/garb
Remove unnecessary dyncom header files
10 years ago
Lioncash ae0c38a333 Remove unnecessary dyncom header files 10 years ago