diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-08-11 07:58:41 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-08-11 07:58:41 +0000 |
commit | 74ec60481386396bb45e63a412cdb121e17d7b30 (patch) | |
tree | 203f3f1ba3dcecc9799a5d44d497484b1303ccc9 /hw | |
parent | 96c4f569846dccf552dbf5ca059a734eb51d3aae (diff) |
Enable Selection command (NetBSD)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3117 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/esp.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -464,6 +464,9 @@ static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) DPRINTF("Set ATN & stop (%2.2x)\n", val); handle_satn_stop(s); break; + case 0x44: + DPRINTF("Enable selection (%2.2x)\n", val); + break; default: DPRINTF("Unhandled ESP command (%2.2x)\n", val); break; |