summaryrefslogtreecommitdiff
path: root/hw/es1370.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-20 16:20:39 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-20 16:20:39 +0000
commit546754dc1d799ebfba1b2654a9a75541e9187674 (patch)
treeab6371d304cda5df86480998ba9f588df84a4ed7 /hw/es1370.c
parent8a40a180d39ec535b16a9456965a59722950cee2 (diff)
downloadqemu-546754dc1d799ebfba1b2654a9a75541e9187674.tar.gz
pcm endianness is now explicit (malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1633 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/es1370.c')
-rw-r--r--hw/es1370.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/hw/es1370.c b/hw/es1370.c
index 217fd30b53..9fddd9d8b3 100644
--- a/hw/es1370.c
+++ b/hw/es1370.c
@@ -432,7 +432,8 @@ static void es1370_update_voices (ES1370State *s, uint32_t ctl, uint32_t sctl)
"es1370.adc",
s,
es1370_adc_callback,
- &as
+ &as,
+ 0 /* little endian */
);
}
else {
@@ -443,7 +444,8 @@ static void es1370_update_voices (ES1370State *s, uint32_t ctl, uint32_t sctl)
i ? "es1370.dac2" : "es1370.dac1",
s,
i ? es1370_dac2_callback : es1370_dac1_callback,
- &as
+ &as,
+ 0 /* litle endian */
);
}
}