mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
- Upgraded some components of qemu-usb with a somewhat newer version from late 2010 (it was a recent version when I did the upgrades). - Fixed the plugin to work with recent versions of pcsx2. I will try to integrate the plugin into the build system tomorrow, and fix some more issues. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4899 96395faa-99c1-11dd-bbfe-3dabce05a288
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#include <stdio.h>
|
|
#include <memory.h>
|
|
#include <malloc.h>
|
|
#include "vl.h"
|
|
|
|
void cpu_physical_memory_rw(uint32_t addr, uint8_t *buf,
|
|
int len, int is_write);
|
|
|
|
static inline void cpu_physical_memory_read(uint32_t addr,
|
|
uint8_t *buf, int len)
|
|
{
|
|
cpu_physical_memory_rw(addr, buf, len, 0);
|
|
}
|
|
static inline void cpu_physical_memory_write(uint32_t addr,
|
|
const uint8_t *buf, int len)
|
|
{
|
|
cpu_physical_memory_rw(addr, (uint8_t *)buf, len, 1);
|
|
}
|
|
|
|
/* compute with 96 bit intermediate result: (a*b)/c */
|
|
uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
|
|
{
|
|
union {
|
|
uint64_t ll;
|
|
struct {
|
|
#ifdef WORDS_BIGENDIAN
|
|
uint32_t high, low;
|
|
#else
|
|
uint32_t low, high;
|
|
#endif
|
|
} l;
|
|
} u, res;
|
|
uint64_t rl, rh;
|
|
|
|
u.ll = a;
|
|
rl = (uint64_t)u.l.low * (uint64_t)b;
|
|
rh = (uint64_t)u.l.high * (uint64_t)b;
|
|
rh += (rl >> 32);
|
|
res.l.high = rh / c;
|
|
res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
|
|
return res.ll;
|
|
}
|