From 5c6999f25210a8567e7bc3068d63859c30c2ce18 Mon Sep 17 00:00:00 2001 From: espes Date: Mon, 10 Dec 2012 18:04:30 +1100 Subject: [PATCH] xbox: apu completely free instruction queue is 0x80 --- hw/mcpx_apu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/mcpx_apu.c b/hw/mcpx_apu.c index 94a57c3d6e..76071aeb1d 100644 --- a/hw/mcpx_apu.c +++ b/hw/mcpx_apu.c @@ -65,7 +65,7 @@ static uint64_t mcpx_apu_vp_read(void *opaque, MCPX_DPRINTF("mcpx apu VP: read [0x%llx]\n", addr); switch (addr) { case 0x10: /* instruction queue free space */ - return 0x20; + return 0x80; default: break; }