mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
types.hpp: remove intrinsic includes
Replace v128 with u128 in some places. Removed some unused files.
This commit is contained in:
parent
5f618814f6
commit
bd269bccaf
64 changed files with 899 additions and 2265 deletions
|
@ -862,7 +862,7 @@ namespace rsx
|
|||
|
||||
for (; t == now; now = get_time_ns())
|
||||
{
|
||||
_mm_pause();
|
||||
utils::pause();
|
||||
}
|
||||
|
||||
timestamp_ctrl = now;
|
||||
|
@ -2662,7 +2662,7 @@ namespace rsx
|
|||
|
||||
for (u32 ea = address >> 20, end = ea + (size >> 20); ea < end; ea++)
|
||||
{
|
||||
const u32 io = utils::ror32(iomap_table.io[ea], 20);
|
||||
const u32 io = utils::rol32(iomap_table.io[ea], 32 - 20);
|
||||
|
||||
if (io + 1)
|
||||
{
|
||||
|
@ -2747,7 +2747,7 @@ namespace rsx
|
|||
if (Emu.IsStopped())
|
||||
break;
|
||||
|
||||
_mm_pause();
|
||||
utils::pause();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2771,7 +2771,7 @@ namespace rsx
|
|||
while (external_interrupt_lock)
|
||||
{
|
||||
// TODO: Investigate non busy-spinning method
|
||||
_mm_pause();
|
||||
utils::pause();
|
||||
}
|
||||
|
||||
external_interrupt_ack.store(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue