1e1e3b618f
* *Modified Files: * .Sanitize ChangeLog *Added Files: * Makefile.in README.Cygnus config.in configure configure.in * device.c device.h dma.c dma.h engine-sky.c gencode.c gpuif.c * gpuif.h hardware.c hardware.h interp.c m16.igen mdmx.igen * mips.dc mips.igen pke0.c pke0.h pke1.c pke1.h r5900.igen * sim-main.h tconfig.in vr5400.igen vu0.c vu0.h vu1.c vu1.h
24 lines
369 B
C
24 lines
369 B
C
/* Copyright (C) 1998, Cygnus Solutions
|
|
|
|
*/
|
|
|
|
#include "gpuif.h"
|
|
#include "dma.h"
|
|
#include "pke0.h"
|
|
#include "pke1.h"
|
|
#include "vu0.h"
|
|
#include "vu1.h"
|
|
|
|
#include "hardware.h"
|
|
|
|
void
|
|
register_devices(SIM_DESC sd)
|
|
{
|
|
/* Attach a bunch of devices... */
|
|
gpuif_attach(sd);
|
|
dma_attach(sd);
|
|
pke0_attach(sd);
|
|
vu0_attach(sd);
|
|
vu1_attach(sd);
|
|
pke1_attach(sd);
|
|
}
|