diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2015-11-11 22:49:44 +0000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2015-11-12 13:15:54 +1100 |
commit | f1f46f74a9de7298977a3ed668e71843fa904c38 (patch) | |
tree | c7f5a31f61b8d97126e4c6ca7c6d4371cf35cc7c /hw/misc/macio/cuda.c | |
parent | 4202e63c0432c72ba518dd882e99a794620d1665 (diff) | |
download | qemu-f1f46f74a9de7298977a3ed668e71843fa904c38.tar.gz qemu-f1f46f74a9de7298977a3ed668e71843fa904c38.tar.bz2 qemu-f1f46f74a9de7298977a3ed668e71843fa904c38.zip |
cuda.c: implement simple CUDA_GET_6805_ADDR command
This simply returns an empty response with no error status as implemented by
MOL to allow MacOS 9 boot to proceed further.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/misc/macio/cuda.c')
-rw-r--r-- | hw/misc/macio/cuda.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c index 89ec51eebf..1a2ab01c0a 100644 --- a/hw/misc/macio/cuda.c +++ b/hw/misc/macio/cuda.c @@ -499,6 +499,9 @@ static void cuda_receive_packet(CUDAState *s, } cuda_send_packet_to_host(s, obuf, 3); break; + case CUDA_GET_6805_ADDR: + cuda_send_packet_to_host(s, obuf, 3); + break; case CUDA_SET_TIME: ti = (((uint32_t)data[1]) << 24) + (((uint32_t)data[2]) << 16) + (((uint32_t)data[3]) << 8) + data[4]; s->tick_offset = ti - (qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) / get_ticks_per_sec()); |