diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:49:48 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:49:48 +0000 |
commit | a1bb27b1e98a372545f37a599c0f9ea785502554 (patch) | |
tree | 5fa9e7adb13704849dddfa7ce82e32c931564543 /vl.h | |
parent | 84409ddbda9b4d8f2d2ad4f580e987800b8e7c4e (diff) |
SD card emulation (initial implementation by Andrzei Zaborowski).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2620 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.h')
-rw-r--r-- | vl.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -956,6 +956,7 @@ extern uint8_t _translate_keycode(const int key); #define MAX_DISKS 4 extern BlockDriverState *bs_table[MAX_DISKS + 1]; +extern BlockDriverState *sd_bdrv; void isa_ide_init(int iobase, int iobase2, int irq, BlockDriverState *hd0, BlockDriverState *hd1); @@ -1385,6 +1386,10 @@ void pl050_init(uint32_t base, void *pic, int irq, int is_mouse); /* pl080.c */ void *pl080_init(uint32_t base, void *pic, int irq, int nchannels); +/* pl181.c */ +void pl181_init(uint32_t base, BlockDriverState *bd, + void *pic, int irq0, int irq1); + /* pl190.c */ void *pl190_init(uint32_t base, void *parent, int irq, int fiq); |