mirror of
https://github.com/xemu-project/xemu.git
synced 2025-04-02 11:11:48 -04:00
mcpx/dsp: Fix minor header issues
This commit is contained in:
parent
31c491a702
commit
c68cdd9479
3 changed files with 1 additions and 21 deletions
|
@ -24,16 +24,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#include "dsp_cpu.h"
|
#include "dsp_cpu.h"
|
||||||
#include "dsp_dma.h"
|
#include "dsp_dma.h"
|
||||||
#include "dsp_state.h"
|
#include "dsp_state.h"
|
||||||
|
|
||||||
#include "dsp.h"
|
#include "dsp.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -24,13 +24,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#include "qemu/bswap.h"
|
#include "qemu/bswap.h"
|
||||||
|
|
||||||
#include "dsp_cpu.h"
|
#include "dsp_cpu.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -18,12 +18,7 @@
|
||||||
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include "qemu/osdep.h"
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#include <stddef.h>
|
|
||||||
#include "qemu/compiler.h"
|
#include "qemu/compiler.h"
|
||||||
#include "dsp_dma.h"
|
#include "dsp_dma.h"
|
||||||
#include "dsp_state.h"
|
#include "dsp_state.h"
|
||||||
|
@ -98,8 +93,6 @@ const char *space_names[] = {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
||||||
|
|
||||||
static void scratch_circular_copy(
|
static void scratch_circular_copy(
|
||||||
DSPDMAState *s,
|
DSPDMAState *s,
|
||||||
uint32_t scratch_base,
|
uint32_t scratch_base,
|
||||||
|
|
Loading…
Add table
Reference in a new issue