Displaying 1 result from an estimated 1 matches for "sse2_ok".
Did you mean:
sse2_obj
2006 Mar 16
0
[PATCH 3a/3] Add shadow VRAM
...HE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
+#include <signal.h>
+#include <setjmp.h>
+#include <emmintrin.h>
+
#include "vl.h"
#include "vga_int.h"
@@ -149,6 +153,8 @@ static uint8_t expand4to8[16];
VGAState *vga_state;
int vga_io_memory;
+
+int sse2_ok = 1;
static uint32_t vga_ioport_read(void *opaque, uint32_t addr)
{
@@ -1340,6 +1346,80 @@ void vga_invalidate_scanlines(VGAState *
}
}
+extern inline int cmp_vram(VGAState *s, int offset, int n)
+{
+ long *vp, *sp;
+
+ if (s->vram_shadow == NULL)
+ return 1;
+ vp = (long *)(s->v...