Commit 74ec60481386396bb45e63a412cdb121e17d7b30
1 parent
96c4f569
Enable Selection command (NetBSD)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3117 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
0 deletions
hw/esp.c
... | ... | @@ -464,6 +464,9 @@ static void esp_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) |
464 | 464 | DPRINTF("Set ATN & stop (%2.2x)\n", val); |
465 | 465 | handle_satn_stop(s); |
466 | 466 | break; |
467 | + case 0x44: | |
468 | + DPRINTF("Enable selection (%2.2x)\n", val); | |
469 | + break; | |
467 | 470 | default: |
468 | 471 | DPRINTF("Unhandled ESP command (%2.2x)\n", val); |
469 | 472 | break; | ... | ... |