1998-01-16 19:27:02 +00:00
|
|
|
/* Copyright (C) 1998, Cygnus Solutions
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gpuif.h"
|
|
|
|
#include "dma.h"
|
1998-01-23 00:38:10 +00:00
|
|
|
#include "pke.h"
|
1998-01-16 19:27:02 +00:00
|
|
|
#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);
|
|
|
|
}
|